We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4fae73 + 87ef308 commit ba6c556Copy full SHA for ba6c556
1 file changed
apps/frontend/src/components/menubars/WorkerIndicator.tsx
@@ -25,7 +25,13 @@ function WorkerRunningJob({ workerRunningJob }: IWorkerIndicator) {
25
{t("topmenu.running")} {workerRunningJob.job_type_str} ...
26
</Text>
27
{!workerRunningJob.finished && !workerRunningJob.cancelled && (
28
- <Button onClick={() => cancelJob(workerRunningJob.id)} color="red" variant="outline" size="xs" loading={isPending}>
+ <Button
29
+ onClick={() => cancelJob(workerRunningJob.id)}
30
+ color="red"
31
+ variant="outline"
32
+ size="xs"
33
+ loading={isPending}
34
+ >
35
{t("joblist.cancel")}
36
</Button>
37
)}
0 commit comments