Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/notifications/components/notification_email_listbox_input.vue')
-rw-r--r--app/assets/javascripts/notifications/components/notification_email_listbox_input.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/notifications/components/notification_email_listbox_input.vue b/app/assets/javascripts/notifications/components/notification_email_listbox_input.vue
index 5d5524deb0d..26b8e06a1a7 100644
--- a/app/assets/javascripts/notifications/components/notification_email_listbox_input.vue
+++ b/app/assets/javascripts/notifications/components/notification_email_listbox_input.vue
@@ -5,7 +5,7 @@ export default {
components: {
ListboxInput,
},
- inject: ['label', 'name', 'emails', 'emptyValueText', 'value', 'disabled'],
+ inject: ['label', 'name', 'emails', 'emptyValueText', 'value', 'disabled', 'placement'],
data() {
return {
selected: this.value,
@@ -41,6 +41,8 @@ export default {
:name="name"
:items="options"
:disabled="disabled"
+ :placement="placement"
+ fluid-width
@select="onSelect"
/>
</template>