Commit c6612749b99c1b1a9f1111e9af8d0de055285caf

Authored by ly525
1 parent e839d9c4

fix typo: Actoion -> Action

front-end/h5/src/components/core/editor/index.js
... ... @@ -10,7 +10,7 @@ import RenderPreviewCanvas from './canvas/preview'
10 10 import RenderPropsEditor from './edit-panel/props'
11 11 import RenderScriptEditor from './edit-panel/script'
12 12 import RenderAnimationEditor from './edit-panel/animation'
13   -import RenderActoionEditor from './edit-panel/action'
  13 +import RenderActionEditor from './edit-panel/action'
14 14 import RenderBackgroundEditor from './edit-panel/background'
15 15 import RenderShortcutsPanel from './shortcuts-panel/index'
16 16 import RenderPageManager from './page-manager/index'
... ... @@ -377,7 +377,7 @@ export default {
377 377 */}
378 378 <a-tab-pane key="属性"><span slot="tab">{this.$t('editor.editPanel.tab.prop')}</span><RenderPropsEditor/></a-tab-pane>
379 379 <a-tab-pane label="动画" key='动画' tab={this.$t('editor.editPanel.tab.animation')}><RenderAnimationEditor /></a-tab-pane>
380   - <a-tab-pane label="动作" key='动作' tab={this.$t('editor.editPanel.tab.action')}>{ this.activeTabKey === '动作' && <RenderActoionEditor/> }</a-tab-pane>
  380 + <a-tab-pane label="动作" key='动作' tab={this.$t('editor.editPanel.tab.action')}>{ this.activeTabKey === '动作' && <RenderActionEditor/> }</a-tab-pane>
381 381 <a-tab-pane label="脚本" key='脚本' tab={this.$t('editor.editPanel.tab.script')}><RenderScriptEditor/></a-tab-pane>
382 382 <a-tab-pane label="背景" key='background' tab={this.$t('editor.editPanel.tab.background')}>{ this.activeTabKey === 'background' && <RenderBackgroundEditor/> }</a-tab-pane>
383 383 </a-tabs>
... ...