mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-04 09:11:46 +00:00
23 lines
346 B
JavaScript
23 lines
346 B
JavaScript
Ext.define('PVE.window.NotesEdit', {
|
|
extend: 'Proxmox.window.Edit',
|
|
|
|
title: gettext('Notes'),
|
|
|
|
width: 600,
|
|
height: '400px',
|
|
resizable: true,
|
|
layout: 'fit',
|
|
|
|
autoLoad: true,
|
|
|
|
defaultButton: undefined,
|
|
|
|
items: {
|
|
xtype: 'textarea',
|
|
name: 'description',
|
|
height: '100%',
|
|
value: '',
|
|
hideLabel: true,
|
|
},
|
|
});
|