Skip to content

Commit

Permalink
remove localize name from accept invitation (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
ipula authored Feb 5, 2025
1 parent 5b694f8 commit 857d7eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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>{{ formatShortDate(row.dateStart) }}</TableCell>
<TableCell>
Expand Down Expand Up @@ -45,6 +45,6 @@ import {useDate} from '@/composables/useDate';
defineProps({
userGroupsToAdd: {type: Array, required: true},
});
const {t, localize} = useLocalize();
const {t} = useLocalize();
const {formatShortDate} = useDate();
</script>

0 comments on commit 857d7eb

Please sign in to comment.