This commit is contained in:
E
2021-03-07 22:48:48 -07:00
parent be284b9acb
commit 14395bdbdd
14 changed files with 65 additions and 46 deletions
+3 -3
View File
@@ -85,11 +85,11 @@ export const Session = (props: Props) => {
</Popconfirm>,
<Popconfirm
key="nuke"
title="Delete all photos?"
title="Delete all photos and return to dashboard?"
onConfirm={handleNuke}
>
<Button danger disabled={!active}>
Nuke Session
Abort Session
</Button>
</Popconfirm>,
<Button
@@ -105,7 +105,7 @@ export const Session = (props: Props) => {
></PageHeader>
<Divider />
<Row className="controls">
<SessionPictures clientId={clientId} />
{active && <SessionPictures clientId={clientId} />}
</Row>
</Content>
)