node tasks: fixup overly-short comment lengths

The minimum "max length" should be 80cc, and 100cc is also fine.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-06-28 16:19:38 +02:00
parent 9e059d560c
commit 6fc91fc698

View File

@ -9,18 +9,13 @@ Ext.define('Proxmox.node.Tasks', {
loadMask: true, loadMask: true,
sortableColumns: false, sortableColumns: false,
// set extra filter components, // set extra filter components, must have a 'name' property for the parameter, and must
// must have a 'name' property for the parameter, // trigger a 'change' event if the value is 'undefined', it will not be sent to the api
// and must trigger a 'change' event
// if the value is 'undefined', it will not be sent to the api
extraFilter: [], extraFilter: [],
// filters that should only be set once and is not changable // fixed filters which cannot be changed after instantiation, for example:
// example: // { vmid: 100 }
// {
// vmid: 100,
// }
preFilter: {}, preFilter: {},
controller: { controller: {
@ -43,10 +38,9 @@ Ext.define('Proxmox.node.Tasks', {
updateLayout: function() { updateLayout: function() {
let me = this; let me = this;
// we want to update the scrollbar on every store load // update the scrollbar on every store load since the total count might be different.
// since the total count might be different // the buffered grid plugin does this only on (user) scrolling itself and even reduces
// the buffered grid plugin does this only on scrolling itself // the scrollheight again when scrolling up
// and even reduces the scrollheight again when scrolling up
me.getView().updateLayout(); me.getView().updateLayout();
}, },