pull/5136/head
Cagatay Civici 2024-01-23 19:46:25 +03:00
commit 2447762d13
1 changed files with 5 additions and 5 deletions

View File

@ -17,11 +17,6 @@ export default {
} }
}, },
style: BaseIconStyle, style: BaseIconStyle,
computed: {
pathId() {
return UniqueComponentId('pv_icon_clip_pv_id_');
}
},
methods: { methods: {
pti() { pti() {
const isLabelEmpty = ObjectUtils.isEmpty(this.label); const isLabelEmpty = ObjectUtils.isEmpty(this.label);
@ -40,6 +35,11 @@ export default {
'aria-hidden': isLabelEmpty 'aria-hidden': isLabelEmpty
}; };
} }
},
computed: {
pathId() {
return UniqueComponentId('pv_icon_clip_pv_id_');
}
} }
}; };
</script> </script>