fix(editor): Show retry information in execution list only when it exists (#6587)

* fix(editor): Show retry information in execution list only when it exists

* build: Fix checking for test files
This commit is contained in:
Csaba Tuncsik
2023-07-04 09:42:58 +02:00
committed by कारतोफ्फेलस्क्रिप्ट™
parent 4253b48b26
commit 2580286a19
3 changed files with 86 additions and 71 deletions

View File

@@ -126,13 +126,13 @@
</td>
<td>
<span v-if="execution.id">#{{ execution.id }}</span>
<span v-if="execution.retryOf !== undefined">
<span v-if="execution.retryOf">
<br />
<small>
({{ $locale.baseText('executionsList.retryOf') }} #{{ execution.retryOf }})
</small>
</span>
<span v-else-if="execution.retrySuccessId !== undefined">
<span v-else-if="execution.retrySuccessId">
<br />
<small>
({{ $locale.baseText('executionsList.successRetry') }} #{{