fix: use canonical values in rate limit unit select (#3753)

This commit is contained in:
krvi 2026-02-09 08:43:03 +00:00 committed by GitHub
parent 4684939e13
commit efd36d0221
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -310,7 +310,13 @@
<div class="col-12 col-md-6">
<q-select
filled
:options="[$t('second'), $t('minute'), $t('hour')]"
:options="[
{label: $t('second'), value: 'second'},
{label: $t('minute'), value: 'minute'},
{label: $t('hour'), value: 'hour'}
]"
emit-value
map-options
v-model="formData.lnbits_rate_limit_unit"
:label="$t('time_unit')"
></q-select>