Skip to content

Commit

Permalink
OHRM5X-1202: Add topbar navigation i18n string (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chamara Abesinghe authored Apr 27, 2022
1 parent dac928a commit e9c2fd1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxd-components",
"version": "1.0.5-alpha.7",
"version": "1.0.5-alpha.8",
"license": "GPL-3.0",
"scripts": {
"test:unit": "vue-cli-service test:unit",
Expand Down
4 changes: 3 additions & 1 deletion components/src/core/components/Topbar/NavigationMore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<template>
<oxd-dropdown-menu @dropdown:closed="onClose" class="oxd-topbar-body-nav-tab">
<span class="oxd-topbar-body-nav-tab-item">
More
{{ t('general.more', 'More') }}
<oxd-icon name="three-dots-vertical" :with-container="false" />
</span>
<template v-slot:content>
Expand Down Expand Up @@ -61,6 +61,7 @@ import {defineComponent, PropType, ref} from 'vue';
import {TopMenuItem} from './types';
import Icon from '@ohrm/oxd/core/components/Icon/Icon.vue';
import DropdownMenu from '@ohrm/oxd/core/components/DropdownMenu/DropdownMenu.vue';
import usei18n from '../../../composables/usei18n';

export default defineComponent({
name: 'oxd-navigation-more',
Expand Down Expand Up @@ -97,6 +98,7 @@ export default defineComponent({
onClose,
onClickMenu,
expandedIndex,
...usei18n(),
};
},
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oxd",
"license": "GPL-3.0",
"version": "1.0.5-alpha.7",
"version": "1.0.5-alpha.8",
"private": true,
"workspaces": [
"components",
Expand Down

0 comments on commit e9c2fd1

Please sign in to comment.