Skip to content

Commit

Permalink
fix: fixed the signature clearing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Liberty-liu committed Apr 9, 2023
1 parent 1869426 commit 09721e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everright-formeditor",
"version": "1.0.2",
"version": "1.0.3",
"files": [
"dist",
"packages/formEditor/componentsConfig.js"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const handleAction = async (type) => {
<canvas
ref="element"
></canvas>
<Icon v-if="showClear" @click="handleClear" :class="[ns.e('clear')]" icon="CLEAR"></Icon>
<Icon v-if="showClear" @click="handleClear" :class="[ns.e('clear')]" icon="delete"></Icon>
</div>
</van-popup>
</template>
Expand Down
2 changes: 1 addition & 1 deletion packages/formEditor/components/FormTypes/Signature/pc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const handleCommit = async () => {
:fit="'contain'"
style="width: 100%; height: 100%;"
/>
<Icon @click="data.options.defaultValue = ''" :class="[ns.e('clear')]" icon="CLEAR"></Icon>
<Icon @click="data.options.defaultValue = ''" :class="[ns.e('clear')]" icon="delete"></Icon>
</template>
<div
v-else
Expand Down

0 comments on commit 09721e2

Please sign in to comment.