mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 12:11:53 +00:00
fix(capture option): Ooops semantic/dom structure fail 🙈🙈🙈
This commit is contained in:
parent
3af53c7a37
commit
360f14bf54
1 changed files with 3 additions and 3 deletions
|
@ -5,10 +5,10 @@
|
|||
<option v-for="time in duration.list" :key="time" :value="time">
|
||||
{{ timeLabel(time) }}
|
||||
</option>
|
||||
<button class="options__btn" :class="{ 'options__btn--check': boomerang }" title="Boomerang mode" @click="openBoomerang">
|
||||
<icon-boomerang></icon-boomerang>
|
||||
</button>
|
||||
</select>
|
||||
<button class="options__btn" :class="{ 'options__btn--check': boomerang }" title="Boomerang mode" @click="openBoomerang">
|
||||
<icon-boomerang></icon-boomerang>
|
||||
</button>
|
||||
<div v-if="!disabledBoomerang" class="options__panel" :class="{ 'active': boomerangOpen }">
|
||||
<button class="option__panelOption" :class="{ 'current': !boomerang }" @click="updateBoomerang(false)"><icon-disabled></icon-disabled>Linear</button>
|
||||
<button class="option__panelOption" :class="{ 'current': boomerang }" @click="updateBoomerang(true)"><icon-boomerang></icon-boomerang>Boomerang</button>
|
||||
|
|
Loading…
Reference in a new issue