Skip to content

Commit 66ae96b

Browse files
authored
ui: fix layout for action button for template form (#8434)
Fixes layout for the action buttons on register template form Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
1 parent 687610d commit 66ae96b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ui/src/views/image/RegisterOrUploadTemplate.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,10 @@
429429
</a-form-item>
430430
</a-col>
431431
</a-row>
432-
<a-button @click="closeAction">{{ $t('label.cancel') }}</a-button>
433-
<a-button :loading="loading" ref="submit" type="primary" @click="handleSubmit">{{ $t('label.ok') }}</a-button>
432+
<div :span="24" class="action-button">
433+
<a-button @click="closeAction">{{ $t('label.cancel') }}</a-button>
434+
<a-button :loading="loading" ref="submit" type="primary" @click="handleSubmit">{{ $t('label.ok') }}</a-button>
435+
</div>
434436
</a-form>
435437
</a-spin>
436438
</div>

0 commit comments

Comments
 (0)