You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This used to work with Stipple 0.26 under julia 1.8.2.
Reading option values from a nested vector in q-select crashes rendering of entire page <q- select v-model="tariffcalculation['calculation_target']['selected']" :options="tariffcalculation['calculation_target']['options']"> {{tariffcalculation['calculation_target']['label']}} </q-select>
The text was updated successfully, but these errors were encountered:
It's a non-trivial problem. The root cause is the (automatic) nested conversion of Dict{String, Any} to Dict{Symbol, Any}.
Probably he easiest workaround would be to force a Type of Dict{Symbol, Any} and to do the conversion in a @onchange handler.
Are you using values nothing somewhere?
If you are still interested in solving the problem, please specify the type and value of tariffcalculation and its value and designated value which is not properly parsed.
This used to work with Stipple 0.26 under julia 1.8.2.
Reading option values from a nested vector in q-select crashes rendering of entire page
<q- select v-model="tariffcalculation['calculation_target']['selected']" :options="tariffcalculation['calculation_target']['options']"> {{tariffcalculation['calculation_target']['label']}} </q-select>
The text was updated successfully, but these errors were encountered: