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.
1 parent 1a8ab84 commit 6614a88Copy full SHA for 6614a88
src/renderer/components/services/job-util.js
@@ -23,6 +23,7 @@ webModule.factory(JOB_UTIL_FACTORY_NAME, [
23
return "danger";
24
case "finished":
25
return "success";
26
+ case "duplicated":
27
case "stopped":
28
return "warning";
29
default:
@@ -37,6 +38,7 @@ webModule.factory(JOB_UTIL_FACTORY_NAME, [
37
38
return isUp
39
? T("status.running.uploading")
40
: T("status.running.downloading"); //'正在上传':'正在下载';
41
42
case "failed":
43
return T("status.failed"); //'失败';
44
0 commit comments