nvazquez commented on code in PR #11594: URL: https://github.com/apache/cloudstack/pull/11594#discussion_r2363879354
########## ui/src/views/tools/ManageInstances.vue: ########## @@ -333,166 +333,224 @@ </a-col> </a-row> <a-divider /> - <a-row :gutter="12"> - <a-col v-if="!isDiskImport" :md="24" :lg="(!isMigrateFromVmware && showManagedInstances) ? 12 : 24"> - <a-card class="instances-card"> - <template #title> - {{ (isMigrateFromVmware && vmwareVcenterType === 'existing') ? $t('label.instances') : $t('label.unmanaged.instances') }} - <a-tooltip :title="(isMigrateFromVmware && vmwareVcenterType === 'existing') ? $t('message.instances.migrate.vmware') : $t('message.instances.unmanaged')"> - <info-circle-outlined /> - </a-tooltip> - <a-button - style="margin-left: 12px; margin-top: 4px" - :loading="unmanagedInstancesLoading" - size="small" - shape="round" - @click="fetchUnmanagedInstances()" > - <template #icon><reload-outlined /></template> - </a-button> - <span style="float: right; width: 50%"> - <search-view - :searchFilters="searchFilters.unmanaged" - :searchParams="searchParams.unmanaged" - :apiName="listInstancesApi.unmanaged" - @search="searchUnmanagedInstances" - /> - </span> - </template> - <a-table - v-if="!isExternal" - class="instances-card-table" - :loading="unmanagedInstancesLoading" - :rowSelection="unmanagedInstanceSelection" - :rowKey="(record, index) => index" - :columns="unmanagedInstancesColumns" - :data-source="unmanagedInstances" - :pagination="false" - size="middle" - :rowClassName="getRowClassName" - > - <template #bodyCell="{ column, text }"> - <template v-if="column.key === 'state'"> - <status :text="text ? text : ''" displayText /> + + <a-tabs v-model:activeKey="activeTabKey" @change="onTabChange"> Review Comment: Sure - I have missed this, will address it as well -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org