Webapp: Clarification of Worker Maintenance section #104229
No reviewers
Labels
No Label
Good First Issue
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Job Type
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: studio/flamenco#104229
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "michael-2/flamenco:app_worker_maintenance_caption"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is the same PR as #104227.
@ -129,0 +122,4 @@
</template>
<template v-else>
<template v-if="workerData.status == 'error'">
in <span class="worker-status">error</span>
This would print "{name} is in error", but in #104227 it was suggested to show "{name} is in error state" in this case.
I kept going back and forth on including the word "state". I have updated this PR to include "{name} is in error state"
@ -132,0 +125,4 @@
</template>
<template v-else>
<template v-if="workerData.status == 'error'">
in <span class="worker-status">error state.</span>
It is now going to show
{{ name }} is error state., which means
. Note the lack of "in" and the period-comma.Flamenco Manager Console - Worker Maintenance section captionto Webapp: Clarification of Worker Maintenance sectionThanks!