Skip to content

Commit

Permalink
[fix] missing end <template>
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Weak committed Dec 13, 2024
1 parent f132020 commit 54eb6f3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ <h4>{{i18n('management-users.view-title')}}</h4>
sortable="true" prop="username" :label="i18n('management-users.username')">
<template v-slot="rowScope">
<span class="text-medium" :data-test-id="'datatable-users-username-' + rowScope.$index">{{rowScope.row.username}}</span>
</template>
</el-table-column>
<el-table-column
v-if="col.value === 'role'"
Expand All @@ -90,6 +91,7 @@ <h4>{{i18n('management-users.view-title')}}</h4>
sortable="true" prop="email" :label="i18n('management-users.email')">
<template v-slot="rowScope">
<span class="text-medium" :data-test-id="'datatable-users-email-' + rowScope.$index">{{rowScope.row.email}}</span>
</template>
</el-table-column>
<el-table-column v-if="col.value === 'group'" sortable="true" prop="groupNames" :label="i18n('management-users.group')">
<template v-slot="rowScope">
Expand Down

0 comments on commit 54eb6f3

Please sign in to comment.