Skip to content

Commit

Permalink
fix: 🐛 Fix batch text spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Jul 4, 2024
1 parent 56151ba commit 062c689
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@
],
"cSpell.words": [
"bhsn"
]
],
"common-intellisense.ui": []
}
1 change: 0 additions & 1 deletion components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ declare module 'vue' {
ElCol: typeof import('element-plus/es')['ElCol']
ElCollapse: typeof import('element-plus/es')['ElCollapse']
ElCollapseItem: typeof import('element-plus/es')['ElCollapseItem']
ElCollapseTransition: typeof import('element-plus/es')['ElCollapseTransition']
ElDialog: typeof import('element-plus/es')['ElDialog']
ElDropdown: typeof import('element-plus/es')['ElDropdown']
ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem']
Expand Down
2 changes: 1 addition & 1 deletion src/components/Device/components/BatchActions/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<component :is="item.elIcon" />
</el-icon>
</template>
{{ $t('common.batch') }}{{ $t(item.label) }}
{{ $t('common.batch') }}-{{ $t(item.label) }}
</el-button>
</template>
</component>
Expand Down

0 comments on commit 062c689

Please sign in to comment.