From a51090f7544eba34d6d567817239031c3236cf43 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 1 Jul 2021 09:38:05 +0200 Subject: [PATCH] Force multi-select position to be on bottom Vue-Multiselect *should* calculate the multi-select position automatically https://github.com/shentao/vue-multiselect/blob/master/src/multiselectMixin.js#L696-L715 , but that fails for some reason. We can force the position in this particular case. Signed-off-by: Thomas Citharel --- src/components/Editor/Repeat/RepeatFreqSelect.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Editor/Repeat/RepeatFreqSelect.vue b/src/components/Editor/Repeat/RepeatFreqSelect.vue index 3d0b2d754..a12bb0b61 100644 --- a/src/components/Editor/Repeat/RepeatFreqSelect.vue +++ b/src/components/Editor/Repeat/RepeatFreqSelect.vue @@ -25,6 +25,7 @@ :allow-empty="false" :options="options" :value="selected" + open-direction="bottom" track-by="freq" label="label" @select="select" />