mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add spaces between brackets
This commit is contained in:
parent
0b1d61ce61
commit
235b96c328
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ define(["jQuery", "loading", "events", "globalize", "serverNotifications", "date
|
||||||
var endtime = Date.parse(task.LastExecutionResult.EndTimeUtc);
|
var endtime = Date.parse(task.LastExecutionResult.EndTimeUtc);
|
||||||
var starttime = Date.parse(task.LastExecutionResult.StartTimeUtc);
|
var starttime = Date.parse(task.LastExecutionResult.StartTimeUtc);
|
||||||
html += globalize.translate("LabelScheduledTaskLastRan", datefns.formatDistanceToNow(endtime, dfnshelper.localeWithSuffix),
|
html += globalize.translate("LabelScheduledTaskLastRan", datefns.formatDistanceToNow(endtime, dfnshelper.localeWithSuffix),
|
||||||
datefns.formatDistance(starttime, endtime, {locale: dfnshelper.getLocale()}));
|
datefns.formatDistance(starttime, endtime, { locale: dfnshelper.getLocale() }));
|
||||||
if (task.LastExecutionResult.Status === "Failed") {
|
if (task.LastExecutionResult.Status === "Failed") {
|
||||||
html += " <span style='color:#FF0000;'>(" + globalize.translate("LabelFailed") + ")</span>";
|
html += " <span style='color:#FF0000;'>(" + globalize.translate("LabelFailed") + ")</span>";
|
||||||
} else if (task.LastExecutionResult.Status === "Cancelled") {
|
} else if (task.LastExecutionResult.Status === "Cancelled") {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue