diff --git a/frontend/src/components/common/IconButton.vue b/frontend/src/components/common/IconButton.vue index 7a17520..567f64f 100644 --- a/frontend/src/components/common/IconButton.vue +++ b/frontend/src/components/common/IconButton.vue @@ -24,6 +24,7 @@ const props = defineProps({ loading: Boolean, border: Boolean, disabled: Boolean, + buttonStyle: [String, Object], }) const hasTooltip = computed(() => { @@ -39,13 +40,16 @@ const hasTooltip = computed(() => { :disabled="disabled" :focusable="false" :loading="loading" + :style="props.buttonStyle" :text="!border" :type="type" @click.prevent="emit('click')"> @@ -61,9 +65,11 @@ const hasTooltip = computed(() => { :type="type" @click.prevent="emit('click')"> diff --git a/frontend/src/components/content_value/ContentEntryEditor.vue b/frontend/src/components/content_value/ContentEntryEditor.vue index d4961f8..442a6d7 100644 --- a/frontend/src/components/content_value/ContentEntryEditor.vue +++ b/frontend/src/components/content_value/ContentEntryEditor.vue @@ -1,11 +1,16 @@