Skip to content

Commit

Permalink
Use the component name as the heading on the property sheet.
Browse files Browse the repository at this point in the history
  • Loading branch information
mchilvers committed Apr 2, 2024
1 parent 64a0949 commit 3f4d583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/builder/src/views/builder/builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<div class="h-full w-72 overflow-y-auto overflow-x-hidden bg-white border-l border-gray-300 p-4 flex-none">
<ib-v-stack v-if="view.state.activeWidgetProperties" :spacing="4">
<ib-icon :icon="['fas', 'trash']" @click="view.deleteComponent()" class="hover:text-red-500" />
<div>{{ view.state.activeWidgetBlueprint.name }}</div>
<div>{{ view.state.activeWidgetProperties.name.value }}</div>
<template v-for="(property, key) in view.state.activeWidgetProperties" :key="key">
<ib-h-stack is-full-width :spacing="4" align-y="center">
<ib-select
Expand Down

0 comments on commit 3f4d583

Please sign in to comment.