Skip to content

Commit 9b4feea

Browse files
Merge pull request #541 from Vibhuti410/overflow-select-dropdown
2 parents af06b98 + aa4d5be commit 9b4feea

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

frontend/src/components/Controls/BasePropertyControl.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ const emit = defineEmits<{
9797
(clearDynamicValue: void): void;
9898
}>();
9999
100+
defineOptions({ inheritance: false });
101+
100102
const props = withDefaults(
101103
defineProps<{
102104
propertyKey: string;

frontend/src/components/Controls/StylePropertyControl.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ const props = withDefaults(
3131
maxValue?: number | null;
3232
component?: Component;
3333
events?: Record<string, unknown>;
34+
type?: "string";
35+
options?: Array<{ label: string; value: string | null }>;
3436
defaultValue?: string | number;
3537
allowDynamicValue?: boolean;
3638
labelPlacement?: "left" | "top";

0 commit comments

Comments
 (0)