Skip to content

Commit

Permalink
fix(editor): use correct attribute on button to make it full width (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik authored Sep 7, 2022
1 parent 0acac35 commit b26545d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/MultipleParameter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div v-if="values && Object.keys(values).length === 0 || isReadOnly" class="no-items-exist">
<n8n-text size="small">{{ $locale.baseText('multipleParameter.currentlyNoItemsExist') }}</n8n-text>
</div>
<n8n-button v-if="!isReadOnly" type="tertiary" fullWidth @click="addItem()" :label="addButtonText" />
<n8n-button v-if="!isReadOnly" type="tertiary" block @click="addItem()" :label="addButtonText" />
</div>
</div>
</template>
Expand Down

0 comments on commit b26545d

Please sign in to comment.