[WebUI] FilesTab: undefined setColumnValue

setColumnValue was removed

Signed-off-by: Xuefer H <xuefer@gmail.com>
Closes: https://github.com/deluge-torrent/deluge/pull/417
This commit is contained in:
Xuefer H 2023-04-11 19:05:16 +08:00 committed by Calum Lind
parent 71b634e968
commit d2a56ce15e
No known key found for this signature in database
GPG Key ID: 90597A687B836BA3

View File

@ -214,7 +214,9 @@ Deluge.details.FilesTab = Ext.extend(Ext.ux.tree.TreeGrid, {
{ {
success: function () { success: function () {
Ext.each(nodes, function (node) { Ext.each(nodes, function (node) {
node.setColumnValue(3, baseItem.filePriority); node.attributes.priority =
baseItem.filePriority;
node.ui.updateColumns();
}); });
}, },
scope: this, scope: this,