Skip to content

Commit

Permalink
update table column names
Browse files Browse the repository at this point in the history
  • Loading branch information
ipula committed Jan 21, 2025
1 parent 5801ccf commit 83cb461
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/managers/UserAccessManager/UserAccessManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
/>
</template>
<TableHeader>
<TableColumn>{{ t('userAccess.tableHeader.name') }}</TableColumn>
<TableColumn>{{ t('common.name') }}</TableColumn>
<TableColumn>{{ t('about.contact.email') }}</TableColumn>
<TableColumn>{{ t('user.roles') }}</TableColumn>
<TableColumn>{{ t('userAccess.tableHeader.startDate') }}</TableColumn>
<TableColumn>{{ t('user.startDate') }}</TableColumn>
<TableColumn>{{ t('user.affiliation') }}</TableColumn>
<TableColumn>
<span class="sr-only">{{ t('common.moreActions') }}</span>
Expand Down
20 changes: 4 additions & 16 deletions src/managers/UserAccessManager/mocks/UserAccessMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,8 @@ export default {
groups: [
{
id: 14,
name: {
en: 'Author',
fr_CA: 'Auteur-e',
},
abbrev: {
en: 'AU',
fr_CA: 'AU',
},
name: 'Author',
abbrev: 'AU',
roleId: 65536,
showTitle: true,
permitSelfRegistration: true,
Expand All @@ -111,14 +105,8 @@ export default {
},
{
id: 15,
name: {
en: 'Translator',
fr_CA: 'Traducteur-trice',
},
abbrev: {
en: 'Trans',
fr_CA: 'Trad',
},
name: 'Translator',
abbrev: 'Trans',
roleId: 65536,
showTitle: true,
permitSelfRegistration: false,
Expand Down

0 comments on commit 83cb461

Please sign in to comment.