Skip to content

Commit ee3f92d

Browse files
rename collapsibleContainerName
1 parent 36b86c5 commit ee3f92d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/EditMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ const allAvailableWidgets = computed(() => {
870870
isExternal: true,
871871
options: {
872872
source: widget.iframeUrl,
873-
containerName: widget.collapsedContainerName,
873+
containerName: widget.collapsibleContainerName,
874874
startCollapsed: widget.startCollapsed,
875875
useVehicleAddressAsBase: widget.useVehicleAddressAsBaseUrl,
876876
},

src/libs/blueos/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const ExternalWidgetSetupInfoSchema = z.object({
4848
name: z.string(),
4949
iframeUrl: z.string(),
5050
iframeIcon: z.string(),
51-
collapsedContainerName: z.string().optional(),
51+
collapsibleContainerName: z.string().optional(),
5252
version: z.string().optional(),
5353
startCollapsed: z.boolean().optional(),
5454
useVehicleAddressAsBaseUrl: z.boolean().optional(),

src/types/widgets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface ExternalWidgetSetupInfo {
2424
/**
2525
* The name of the collapsed container, this is displayed on the widget browser
2626
*/
27-
collapsedContainerName?: string
27+
collapsibleContainerName?: string
2828

2929
/**
3030
* Version of the widget (optional)

0 commit comments

Comments
 (0)