Skip to content

Commit

Permalink
make isEmbeddedExternally optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed Jun 9, 2020
1 parent 0b7305c commit 6c94e47
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export interface DashboardContainerInput extends ContainerInput {
useMargins: boolean;
title: string;
description?: string;
isEmbeddedExternally: boolean;
isEmbeddedExternally?: boolean;
isFullScreenMode: boolean;
panels: {
[panelId: string]: DashboardPanelState<EmbeddableInput & { [k: string]: unknown }>;
Expand Down Expand Up @@ -106,7 +106,6 @@ export class DashboardContainer extends Container<InheritedChildInput, Dashboard
super(
{
panels: {},
isEmbeddedExternally: false,
isFullScreenMode: false,
filters: [],
useMargins: true,
Expand Down

0 comments on commit 6c94e47

Please sign in to comment.