summaryrefslogtreecommitdiff
path: root/frontend/app
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app')
-rw-r--r--frontend/app/views/tile/components/tile.form.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/app/views/tile/components/tile.form.js b/frontend/app/views/tile/components/tile.form.js
index 8f6fe83..8a6a08e 100644
--- a/frontend/app/views/tile/components/tile.form.js
+++ b/frontend/app/views/tile/components/tile.form.js
@@ -946,6 +946,7 @@ class TileForm extends Component {
<Checkbox
label="Wait to appear"
name="wait_to_appear"
+ className='short'
checked={temporaryTile.settings.wait_to_appear}
onChange={this.handleSettingsSelect}
autoComplete="off"
@@ -961,6 +962,14 @@ class TileForm extends Component {
/>
</div>
)}
+ <Checkbox
+ label="Hide on click"
+ name="hide_on_click"
+ className='short'
+ checked={temporaryTile.settings.hide_on_click}
+ onChange={this.handleSettingsSelect}
+ autoComplete="off"
+ />
</div>
)
}