Skip to content

Commit a7c120d

Browse files
committed
Fix a mistake causing document reopen dialog to be always hidden
1 parent f3e36e7 commit a7c120d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/packages/teleterm/src/ui/DocumentsReopen/DocumentsReopen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function DocumentsReopen(props: {
4848

4949
return (
5050
<DialogConfirmation
51-
open={!history}
51+
open={!props.hidden}
5252
keepInDOMAfterClose
5353
onClose={props.onCancel}
5454
dialogCss={() => ({

0 commit comments

Comments
 (0)