From 15a57799709fdd91947ad6215330147739a7e1a6 Mon Sep 17 00:00:00 2001 From: Hulot Date: Wed, 13 Sep 2017 18:04:15 +0200 Subject: [PATCH] allow appBarZDepth to bet 0 (#13) --- src/FullscreenDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FullscreenDialog.js b/src/FullscreenDialog.js index ea8dc6c..de8fdb3 100644 --- a/src/FullscreenDialog.js +++ b/src/FullscreenDialog.js @@ -75,7 +75,7 @@ export default function FullscreenDialog (props, { muiTheme }) { FullscreenDialog.propTypes = { actionButton: PropTypes.node, appBarStyle: PropTypes.object, - appBarZDepth: PropTypes.oneOf([1, 2, 3, 4, 5]), + appBarZDepth: PropTypes.oneOf([0, 1, 2, 3, 4, 5]), children: PropTypes.node, closeIcon: PropTypes.node, containerStyle: PropTypes.object,