Skip to content

Commit

Permalink
fix(editor): Change execution list tab loader design (#6120)
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik authored and netroy committed May 2, 2023
1 parent 625d672 commit ffc033f
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -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>

0 comments on commit ffc033f

Please sign in to comment.