diff --git a/src/components/NcActionInput/NcActionInput.vue b/src/components/NcActionInput/NcActionInput.vue index 6599f12d19..043a28e731 100644 --- a/src/components/NcActionInput/NcActionInput.vue +++ b/src/components/NcActionInput/NcActionInput.vue @@ -202,7 +202,7 @@ For the multiselect component, all events will be passed through. Please see the :disabled="disabled" :input-class="{ focusable: isFocusable }" trailing-button-icon="arrowRight" - :show-trailing-button="showTrailingButton && value !== '' && !disabled" + :show-trailing-button="showTrailingButton && !disabled" v-bind="$attrs" v-on="$listeners" @trailing-button-click="$refs.form.requestSubmit()" @@ -230,7 +230,7 @@ For the multiselect component, all events will be passed through. Please see the :input-class="{ focusable: isFocusable }" :type="type" trailing-button-icon="arrowRight" - :show-trailing-button="showTrailingButton && value !== '' && !disabled" + :show-trailing-button="showTrailingButton && !disabled" v-bind="$attrs" v-on="$listeners" @trailing-button-click="$refs.form.requestSubmit()"