Skip to content

Commit 857d7eb

Browse files
authored
remove localize name from accept invitation (#511)
1 parent 5b694f8 commit 857d7eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/acceptInvitation/AcceptInvitationUserRoles.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<TableBody>
1313
<TableRow v-for="(row, index) in userGroupsToAdd" :key="index">
1414
<TableCell :is-row-header="true">
15-
{{ localize(row.userGroupName) }}
15+
{{ row.userGroupName }}
1616
</TableCell>
1717
<TableCell>{{ formatShortDate(row.dateStart) }}</TableCell>
1818
<TableCell>
@@ -45,6 +45,6 @@ import {useDate} from '@/composables/useDate';
4545
defineProps({
4646
userGroupsToAdd: {type: Array, required: true},
4747
});
48-
const {t, localize} = useLocalize();
48+
const {t} = useLocalize();
4949
const {formatShortDate} = useDate();
5050
</script>

0 commit comments

Comments
 (0)