diff --git a/client/src/components/Common/ButtonSpinner.vue b/client/src/components/Common/ButtonSpinner.vue index e2b8def400c1..f87f34b33991 100644 --- a/client/src/components/Common/ButtonSpinner.vue +++ b/client/src/components/Common/ButtonSpinner.vue @@ -11,12 +11,14 @@ interface Props { wait?: boolean; tooltip?: string; disabled?: boolean; + size?: string; } withDefaults(defineProps(), { wait: false, tooltip: undefined, disabled: false, + size: "md", }); @@ -25,6 +27,7 @@ withDefaults(defineProps(), { v-if="wait" v-b-tooltip.hover.bottom disabled + :size="size" variant="info" title="Please Wait..." class="d-flex flex-nowrap align-items-center text-nowrap"> @@ -38,6 +41,7 @@ withDefaults(defineProps(), { class="d-flex flex-nowrap align-items-center text-nowrap" :title="tooltip" :disabled="disabled" + :size="size" @click="$emit('onClick')"> {{ title }} diff --git a/client/src/components/Grid/GridInvocation.vue b/client/src/components/Grid/GridInvocation.vue index 847127cfa0b7..65aed67b73f7 100644 --- a/client/src/components/Grid/GridInvocation.vue +++ b/client/src/components/Grid/GridInvocation.vue @@ -109,7 +109,7 @@ function refreshTable() { :extra-props="extraProps" :embedded="forStoredWorkflow || forHistory || forBatch">