ui: change comment column to notes

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-11-24 10:09:34 +01:00 committed by Thomas Lamprecht
parent c2d24034d5
commit ef402242d8
3 changed files with 9 additions and 9 deletions

View File

@ -238,8 +238,8 @@ Ext.define('PVE.grid.BackupView', {
dataIndex: 'volid'
},
{
header: gettext('Comment'),
dataIndex: 'comment',
header: gettext('Notes'),
dataIndex: 'notes',
flex: 1,
renderer: Ext.htmlEncode,
},

View File

@ -53,7 +53,7 @@ Ext.define('PVE.storage.Browser', {
title: gettext('Backups'),
iconCls: 'fa fa-floppy-o',
itemId: 'contentBackup',
hasCommentColumn: true,
hasNotesColumn: true,
});
}
if (contents.includes('images')) {

View File

@ -333,11 +333,11 @@ Ext.define('PVE.storage.ContentView', {
renderer: PVE.Utils.render_storage_content,
dataIndex: 'text',
},
'comment': {
header: gettext('Comment'),
'notes': {
header: gettext('Notes'),
flex: 1,
renderer: Ext.htmlEncode,
dataIndex: 'comment',
dataIndex: 'notes',
},
'date': {
header: gettext('Date'),
@ -359,8 +359,8 @@ Ext.define('PVE.storage.ContentView', {
if (me.hideColumns) {
me.hideColumns.forEach(key => delete availableColumns[key]);
} else if (!me.hasCommentColumn) {
delete availableColumns.comment;
} else if (!me.hasNotesColumn) {
delete availableColumns.notes;
}
const columns = Object.values(availableColumns);
@ -381,7 +381,7 @@ Ext.define('PVE.storage.ContentView', {
extend: 'Ext.data.Model',
fields: [
'volid', 'content', 'format', 'size', 'used', 'vmid',
'channel', 'id', 'lun', 'comment', 'verification',
'channel', 'id', 'lun', 'notes', 'verification',
{
name: 'text',
convert: function(value, record) {