fix clone VM dialog error position

Signed-off-by: Andy Lee <andy.lee@suse.com>
This commit is contained in:
Andy Lee 2025-05-28 12:38:13 +08:00
parent 3e9a0a4377
commit 1839bf387e
No known key found for this signature in database
GPG Key ID: EC774C32160918ED

View File

@ -106,6 +106,12 @@ export default {
:label="t('harvester.modal.cloneVM.name')" :label="t('harvester.modal.cloneVM.name')"
required required
/> />
<Banner
v-for="(err, i) in errors"
:key="i"
color="error"
:label="err"
/>
</template> </template>
<template <template
@ -127,11 +133,6 @@ export default {
@click="create" @click="create"
/> />
</div> </div>
<Banner
v-for="(err, i) in errors"
:key="i"
/>
</template> </template>
</Card> </Card>
</template> </template>