diff --git a/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx b/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx index d273c8bc0..cdf15ed8b 100644 --- a/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx +++ b/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx @@ -41,9 +41,21 @@ export const AvailableElementTypes = ({ enabledStatusChecker: false, okStatus: [], }, - integration: { - type: 'deluge', - properties: {}, + behaviour: { + isOpeningNewTab: false, + }, + area: { + type: 'wrapper', + }, + shape: { + location: { + x: 0, + y: 0, + }, + size: { + height: 1, + width: 1, + }, }, }, }, diff --git a/src/types/service.ts b/src/types/service.ts index 29669ca8c..0c4af3fa0 100644 --- a/src/types/service.ts +++ b/src/types/service.ts @@ -7,13 +7,11 @@ export interface ServiceType extends TileBaseType { behaviour: ServiceBehaviourType; network: ServiceNetworkType; appearance: ServiceAppearanceType; - integration?: ServiceIntegrationType; //TODO: make this nullable + integration?: ServiceIntegrationType; } interface ServiceBehaviourType { - onClickUrl: string; - isMoveable: boolean; //TODO: remove this proeprty - isSticky: boolean; //TODO: remove this property + onClickUrl?: string; isOpeningNewTab: boolean; }