Skip to content

Commit

Permalink
remove localized user group name
Browse files Browse the repository at this point in the history
  • Loading branch information
ipula committed Jan 8, 2025
1 parent 745660e commit c5f518a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
:key="i"
>
<div class="flex flex-col">
{{ localize(userGroups.userGroupName) }}
{{ userGroups.userGroupName }}
</div>
</template>
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/acceptInvitation/AcceptInvitationUserRoles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<TableBody>
<TableRow v-for="(row, index) in userGroupsToAdd" :key="index">
<TableCell :is-row-header="true">
{{ localize(row.userGroupName) }}
{{ row.userGroupName }}
</TableCell>
<TableCell>{{ row.dateStart }}</TableCell>
<TableCell>{{ row.dateEnd ? row.dateEnd : '---' }}</TableCell>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/userInvitation/UserInvitationUserGroupsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
:key="index"
>
<TableCell>
{{ localize(currentUserGroup.name) }}
{{ currentUserGroup.name }}
</TableCell>
<TableCell>
{{ currentUserGroup.dateStart ? currentUserGroup.dateStart : '---' }}
Expand Down

0 comments on commit c5f518a

Please sign in to comment.