mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-28 01:22:44 +00:00
fixed bug #2062 priority shows prio_null
When looking at a priority from a calendar where you don't have enough rights. In this case simply do not show anything in the field.
This commit is contained in:
@@ -1075,7 +1075,12 @@ function tasksListCallback(http) {
|
||||
|
||||
cell = createElement("td");
|
||||
row.appendChild(cell);
|
||||
cell.update(_("prio_" + data[i][11])); // Priority
|
||||
if (data[i][11] != null) {
|
||||
cell.update(_("prio_" + data[i][11])); // Priority
|
||||
}
|
||||
else {
|
||||
cell.update(""); // Priority
|
||||
}
|
||||
|
||||
cell = createElement("td");
|
||||
row.appendChild(cell);
|
||||
|
||||
Reference in New Issue
Block a user