fix(editor): Change execution list tab loader design (#6120)

This commit is contained in:
Csaba Tuncsik 2023-04-28 12:29:32 +02:00 committed by GitHub
parent 8669f95736
commit 188ef042cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,10 +25,8 @@
data-test-id="current-executions-list" data-test-id="current-executions-list"
@scroll="loadMore(20)" @scroll="loadMore(20)"
> >
<div v-if="loading" class="mr-m"> <div v-if="loading" class="mr-l">
<n8n-loading variant="p" :rows="1" /> <n8n-loading variant="rect" />
<n8n-loading variant="p" :rows="1" />
<n8n-loading variant="p" :rows="1" />
</div> </div>
<div v-if="!loading && executions.length === 0" :class="$style.noResultsContainer"> <div v-if="!loading && executions.length === 0" :class="$style.noResultsContainer">
<n8n-text color="text-base" size="medium" align="center"> <n8n-text color="text-base" size="medium" align="center">
@ -291,3 +289,10 @@ export default defineComponent({
text-align: center; text-align: center;
} }
</style> </style>
<style lang="scss" scoped>
:deep(.el-skeleton__item) {
height: 60px;
border-radius: 0;
}
</style>