fix(editor): Change execution list tab loader design (#6120)
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user