fix #586: make notes edit window resizable

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2016-09-02 10:55:11 +02:00 committed by Dietmar Maurer
parent cc183d882d
commit 9174efeb5b

View File

@ -7,11 +7,13 @@ Ext.define('PVE.window.NotesEdit', {
Ext.apply(me, { Ext.apply(me, {
title: gettext('Notes'), title: gettext('Notes'),
width: 600, width: 600,
height: '400px',
resizable: true,
layout: 'fit', layout: 'fit',
items: { items: {
xtype: 'textarea', xtype: 'textarea',
name: 'description', name: 'description',
height: 200, height: '100%',
value: '', value: '',
hideLabel: true hideLabel: true
} }