mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
fix(editor): Change execution list tab loader design (#6120)
This commit is contained in:
parent
8669f95736
commit
188ef042cd
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue