Skip to content

Commit

Permalink
Fix incorrect priority value sent from WebUI
Browse files Browse the repository at this point in the history
Closes #9070.
  • Loading branch information
Piccirello committed Dec 11, 2018
1 parent c5b8f62 commit a44ed9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/www/private/scripts/prop-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ var createPriorityCombo = function(id, selected_prio) {
normal.setAttribute('selected', '');
normal.injectInside(select);

var high = createOptionElement(2, "QBT_TR(High)QBT_TR[CONTEXT=PropListDelegate]");
var high = createOptionElement(6, "QBT_TR(High)QBT_TR[CONTEXT=PropListDelegate]");
high.injectInside(select);

var maximum = createOptionElement(7, "QBT_TR(Maximum)QBT_TR[CONTEXT=PropListDelegate]");
Expand Down

0 comments on commit a44ed9c

Please sign in to comment.