nextcloud-vue icon indicating copy to clipboard operation
nextcloud-vue copied to clipboard

Problem to print the value from Multiselect component

Open zak39 opened this issue 4 years ago • 1 comments

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 :

pb-set-quota-esr

Then, the result from Firefox 91.01 :

set-quota-no-esr

I don't know where is the problem... :thinking:

zak39 avatar Aug 27 '21 13:08 zak39

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

image

zak39 avatar Aug 27 '21 14:08 zak39

Multiselect was removed. Can not reproduce with NcSelect.

susnux avatar Jun 29 '23 20:06 susnux