Skip to content

Commit

Permalink
fix(web): Fix Edit Prop modal
Browse files Browse the repository at this point in the history
  • Loading branch information
stack72 committed Nov 29, 2024
1 parent af59e7c commit c0d43f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/web/src/components/AttributesPanel/TreeFormItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ const confirmEditModalRef = ref<InstanceType<typeof Modal>>();
const confirmEditModalTitle = computed(() => {
if (propControlledByParent.value) {
if (propName.value) {
return `You Cannot Edit Prop &quote;${propName.value}&quote;`;
return `You Cannot Edit Prop '${propName.value}'`;
}
return "You Cannot Edit Prop";
}
Expand Down

0 comments on commit c0d43f6

Please sign in to comment.