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