From 5b4c559480fad4882670075dbc0da4877b7df082 Mon Sep 17 00:00:00 2001 From: Ali Taheri Date: Tue, 10 Nov 2015 10:37:26 +0330 Subject: [PATCH] Fixed raw code of dialog's open prop --- docs/src/app/components/raw-code/dialog-code.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/app/components/raw-code/dialog-code.txt b/docs/src/app/components/raw-code/dialog-code.txt index f55befb1450e41..37f58cb4d881b9 100644 --- a/docs/src/app/components/raw-code/dialog-code.txt +++ b/docs/src/app/components/raw-code/dialog-code.txt @@ -8,7 +8,7 @@ let standardActions = [ title="Dialog With Standard Actions" actions={standardActions} actionFocus="submit" - isOpen={this.state.showDialogStandardActions} + open={this.state.showDialogStandardActions} onRequestClose={this._handleRequestClose}> The actions in this window are created from the json that's passed in. @@ -28,7 +28,7 @@ let customActions = [ The actions in this window were passed in as an array of react objects. @@ -38,7 +38,7 @@ let customActions = [ actions={customActions} autoDetectWindowHeight={true} autoScrollBodyContent={true} - isOpen={this.state.showDialogScrollable} + open={this.state.showDialogScrollable} onRequestClose={this._handleRequestClose}>
Really long content