mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -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"
|
||||
@scroll="loadMore(20)"
|
||||
>
|
||||
<div v-if="loading" class="mr-m">
|
||||
<n8n-loading variant="p" :rows="1" />
|
||||
<n8n-loading variant="p" :rows="1" />
|
||||
<n8n-loading variant="p" :rows="1" />
|
||||
<div v-if="loading" class="mr-l">
|
||||
<n8n-loading variant="rect" />
|
||||
</div>
|
||||
<div v-if="!loading && executions.length === 0" :class="$style.noResultsContainer">
|
||||
<n8n-text color="text-base" size="medium" align="center">
|
||||
|
@ -291,3 +289,10 @@ export default defineComponent({
|
|||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
:deep(.el-skeleton__item) {
|
||||
height: 60px;
|
||||
border-radius: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue