mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-02-23 05:41:05 +01:00
Fix icon not being displayed in the creation quick form
This commit is contained in:
parent
0660957f51
commit
89657bb5aa
@ -53,6 +53,15 @@
|
|||||||
const totpLooper = ref()
|
const totpLooper = ref()
|
||||||
const otpSpanTag = ref()
|
const otpSpanTag = ref()
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.icon,
|
||||||
|
(val) => {
|
||||||
|
if (val != undefined) {
|
||||||
|
otpauthParams.value.icon = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
/***
|
/***
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -244,6 +244,9 @@
|
|||||||
twofaccountService.deleteIcon(tempIcon.value)
|
twofaccountService.deleteIcon(tempIcon.value)
|
||||||
tempIcon.value = ''
|
tempIcon.value = ''
|
||||||
}
|
}
|
||||||
|
if (showQuickForm.value) {
|
||||||
|
form.icon = tempIcon.value
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user