Webapp: Clarification of Worker Maintenance section #104229

Merged
Sybren A. Stüvel merged 6 commits from michael-2/flamenco:app_worker_maintenance_caption into main 2023-08-23 15:23:52 +02:00
Showing only changes of commit 719073d27d - Show all commits

View File

@ -125,7 +125,7 @@
</template>
michael-2 marked this conversation as resolved

This would print "{name} is in error", but in #104227 it was suggested to show "{name} is in error state" in this case.

This would print "{name} is in error", but in #104227 it was suggested to show "{name} is in error state" in this case.
Review

I kept going back and forth on including the word "state". I have updated this PR to include "{name} is in error state"

I kept going back and forth on including the word "state". I have updated this PR to include "{name} is in error state"
<template v-else>
<template v-if="workerData.status == 'error'">
in <span class="worker-status">error state</span>
in <span class="worker-status">error</span> state

It is now going to show {{ name }} is error state., which means. Note the lack of "in" and the period-comma.

It is now going to show `{{ name }} is error state., which means`. Note the lack of "in" and the period-comma.
</template>
<template v-else>
<span class="worker-status">{{ workerData.status }}</span>