diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-23 16:20:09 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-23 16:20:09 +0100 |
| commit | 3b1d8d3416b27744287c7dc85ceede31e56e4dce (patch) | |
| tree | cb771e213986b925d607add2275e3526a0208310 /frontend/app | |
| parent | fb82ff9fa188769f7cf7bb02c1c574201cbe9f85 (diff) | |
hide on click
Diffstat (limited to 'frontend/app')
| -rw-r--r-- | frontend/app/views/tile/components/tile.form.js | 9 |
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> ) } |
