Commit dbb36f0e7383362d77172a92d7a0a9d2c35d777a
1 parent
1d37baa4
fix(page-manager) fix i18n key error
Showing
1 changed file
with
2 additions
and
2 deletions
front-end/h5/src/components/core/editor/page-manager/index.js
| ... | ... | @@ -14,8 +14,8 @@ export default { |
| 14 | 14 | }, |
| 15 | 15 | render (h) { |
| 16 | 16 | const addPageText = this.$t('editor.pageManager.action.add') |
| 17 | - const copyPageText = this.$t('editor.pageManager.action.add') | |
| 18 | - const deletePageText = this.$t('editor.pageManager.action.add') | |
| 17 | + const copyPageText = this.$t('editor.pageManager.action.copy') | |
| 18 | + const deletePageText = this.$t('editor.pageManager.action.delete') | |
| 19 | 19 | return ( |
| 20 | 20 | <div class="page-manager-panel"> |
| 21 | 21 | { | ... | ... |