From f5d00373f3cc05c3bec604c0ba42aaee02af9d84 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 29 May 2020 09:52:29 +0200 Subject: [PATCH] ui: add missing comment field to remote model when using a diffstore, we have to add all used columns to the model, else they will not refresh on a load Signed-off-by: Dominik Csapak --- www/config/RemoteView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/config/RemoteView.js b/www/config/RemoteView.js index 2a5b3f1a..5739255d 100644 --- a/www/config/RemoteView.js +++ b/www/config/RemoteView.js @@ -1,6 +1,6 @@ Ext.define('pmx-remotes', { extend: 'Ext.data.Model', - fields: [ 'name', 'host', 'userid', 'fingerprint' ], + fields: [ 'name', 'host', 'userid', 'fingerprint', 'comment' ], idProperty: 'name', proxy: { type: 'proxmox',