fix(editor): Loading state for executions tab (#6100)

* fix(editor): Loading state for executions tab

* fix(editor): do not show no result if loading
This commit is contained in:
Csaba Tuncsik
2023-04-27 13:35:12 +02:00
committed by GitHub
parent e4356283a8
commit 4cbb05b001
2 changed files with 7 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
<template>
<div :class="$style.container" v-if="!loading">
<div :class="$style.container">
<executions-sidebar
:executions="executions"
:loading="loading"
:loading="loading && !executions.length"
:loadingMore="loadingMore"
:temporaryExecution="temporaryExecution"
@reloadExecutions="setExecutions"