]> git.proxmox.com Git - proxmox-backup.git/blame - www/NodeNotes.js
prune jobs: switch default to on-error-only notifications
[proxmox-backup.git] / www / NodeNotes.js
CommitLineData
f3b02a9b
SS
1// Needs to be its own xtype for `path` to work in `NavigationTree`
2Ext.define('PBS.NodeNotes', {
3 extend: 'Ext.panel.Panel',
4 xtype: 'pbsNodeNotes',
5
6 scrollable: true,
7 layout: 'fit',
8
9 items: [
10 {
11 xtype: 'container',
12 layout: 'fit',
13 items: [{
14 xtype: 'pmxNotesView',
15 tools: false,
16 border: false,
17 node: 'localhost',
18 enableTBar: true,
19 maxLength: 1022*64,
20 }],
21 },
22 ],
23});