Skip to content

Commit 24a2c6d

Browse files
committed
[automated] Apply ESLint and Prettier fixes
1 parent 5ee5630 commit 24a2c6d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/renderer/extensions/vueNodes/widgets/components/form/dropdown/FormDropdownMenuItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function handleVideoLoad(event: Event) {
131131
"
132132
>
133133
<span
134-
v-tooltip="layout === 'grid' ? label ?? name : undefined"
134+
v-tooltip="layout === 'grid' ? (label ?? name) : undefined"
135135
:class="
136136
cn(
137137
'block text-[15px] line-clamp-2 break-words overflow-hidden',

src/renderer/extensions/vueNodes/widgets/registry/widgetRegistry.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ const coreWidgetDefinitions: Array<[string, WidgetDefinition]> = [
6262
essential: true
6363
}
6464
],
65-
['combo', { component: WidgetSelect, aliases: ['COMBO', 'asset'], essential: true }],
65+
[
66+
'combo',
67+
{ component: WidgetSelect, aliases: ['COMBO', 'asset'], essential: true }
68+
],
6669
[
6770
'color',
6871
{ component: WidgetColorPicker, aliases: ['COLOR'], essential: false }

0 commit comments

Comments
 (0)