Modal visible -> open
Summary: The `visible` prop is marked as deprecated in favour of `open` Reviewed By: passy Differential Revision: D49226821 fbshipit-source-id: 4a4a7d03a1c8ff860c4e4cd02e19071185a8554e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
860af1eff7
commit
e80843d433
@@ -34,7 +34,7 @@ export function RequiredParametersDialog(props: Props) {
|
||||
useRequiredParameterFormValidator(requiredParameters);
|
||||
return (
|
||||
<Modal
|
||||
visible
|
||||
open
|
||||
onCancel={onHide}
|
||||
title="Provide bookmark details"
|
||||
footer={
|
||||
|
||||
@@ -56,7 +56,7 @@ export function SaveBookmarkDialog(props: Props) {
|
||||
return null;
|
||||
} else {
|
||||
return (
|
||||
<Modal visible footer={null} onCancel={onHide}>
|
||||
<Modal open footer={null} onCancel={onHide}>
|
||||
{(onHide: () => void) => {
|
||||
return (
|
||||
<Container>
|
||||
|
||||
Reference in New Issue
Block a user