mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-21 22:35:11 +00:00
upd: append ✔ on set filter
This commit is contained in:
parent
131fab1032
commit
c8357a410b
1 changed files with 3 additions and 3 deletions
|
@ -72,7 +72,7 @@ function options(ev) {
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
icon: 'ph-image ph-bold ph-lg',
|
icon: 'ph-image ph-bold ph-lg',
|
||||||
text: 'With Images',
|
text: `With Images ${filetype.value === 'image' ? '✔' : ''}`,
|
||||||
action: () => {
|
action: () => {
|
||||||
filetype.value = 'image';
|
filetype.value = 'image';
|
||||||
},
|
},
|
||||||
|
@ -80,7 +80,7 @@ function options(ev) {
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
icon: 'ph-music-notes-simple ph-bold ph-lg',
|
icon: 'ph-music-notes-simple ph-bold ph-lg',
|
||||||
text: 'With Audios',
|
text: `With Audios ${filetype.value === 'audio' ? '✔' : ''}`,
|
||||||
action: () => {
|
action: () => {
|
||||||
filetype.value = 'audio';
|
filetype.value = 'audio';
|
||||||
},
|
},
|
||||||
|
@ -88,7 +88,7 @@ function options(ev) {
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
icon: 'ph-video ph-bold ph-lg',
|
icon: 'ph-video ph-bold ph-lg',
|
||||||
text: 'With Videos',
|
text: `With Videos ${filetype.value === 'video' ? '✔' : ''}`,
|
||||||
action: () => {
|
action: () => {
|
||||||
filetype.value = 'video';
|
filetype.value = 'video';
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue