From 5f73a3e5b0207290a5e46922751bc07e0dcd36a9 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 17 May 2019 11:50:01 -0700 Subject: [PATCH] fix of #303 --- src/controls/iFrameDialog/IFrameDialog.tsx | 36 ++++++++++++++++------ 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/src/controls/iFrameDialog/IFrameDialog.tsx b/src/controls/iFrameDialog/IFrameDialog.tsx index 600726c04..2deb45fef 100644 --- a/src/controls/iFrameDialog/IFrameDialog.tsx +++ b/src/controls/iFrameDialog/IFrameDialog.tsx @@ -59,7 +59,8 @@ export interface IFrameDialogProps extends IDialogProps { } export interface IFrameDialogState { - dialogId: string; + dialogId: string | null; + isStylingSet?: boolean; } /** @@ -108,11 +109,21 @@ export class IFrameDialog extends React.Component { this.setDialogStyling(); } + }; + return ( - +