Skip to content

Commit e08c514

Browse files
committed
fix(plugin): show icon for text-align component
1 parent 9e8e89f commit e08c514

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

front-end/h5/src/views/Editor.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ const LbpButton = {
177177
<el-radio-group v-model="value_" size="small">
178178
<el-tooltip effect="dark" :content="item.label" placement="top" :key="index" v-for="(item, index) in textAlignTabs">
179179
<el-radio-button :label="item.value">
180-
<i :class="['fa', 'fa-align-\${item.value}']" aria-hidden="true"></i>
180+
<!-- issue #8 -->
181+
<i :class="['fa', 'fa-align-'+item.value]" aria-hidden="true"></i>
181182
</el-radio-button>
182183
</el-tooltip>
183184
</el-radio-group>

0 commit comments

Comments
 (0)