Problem to print the value from Multiselect component
Hi :slightly_smiling_face:
I am using the Multiselect component in an app project for one customer.
My customer use Firefox ESR and we have found a bug with this component.
From Firefox ESR, when I selected one option, the value is updated in back-end side and not front-end side.
First, here is a part of my code :
<Multiselect
class="quota-select"
:disabled="$root.$data.isUserGeneralAdmin === 'false'"
:placeholder="t('workspace', 'Set quota')"
:taggable="true"
:value="$store.state.spaces[$route.params.space].quota"
:options="['1GB', '5GB', '10GB', 'unlimited']"
@change="setSpaceQuota"
@tag="setSpaceQuota" />
And there is the result from Firefox ESR 78.13 :

Then, the result from Firefox 91.01 :

I don't know where is the problem... :thinking:
Oooh it's crazy !
If I set to 300px or 100% !important the width of the Multiselect component, I can see the value... on the right of the field ! oO

Multiselect was removed. Can not reproduce with NcSelect.