Skip to content

Commit

Permalink
webui: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergkemper committed Mar 6, 2020
1 parent d0894c8 commit af46535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/public/js/custom-functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ function formatJobStatus(data) {
// Queued waiting for device
case 'q':
jobstatus_q = iJS._("Queued waiting for device");
output = '<span class="label label-default" title="' + jobsttaus_q + '">' + iJS._("Queued waiting for device") + '</span>';
output = '<span class="label label-default" title="' + jobstatus_q + '">' + iJS._("Queued waiting for device") + '</span>';
break;
default:
output = '<span class="label label-primary">' + data + '</span>';
Expand Down

0 comments on commit af46535

Please sign in to comment.