forked from 0x2620/pandora
fix #2654 (add 'id' field to document)
This commit is contained in:
parent
9273d7b3ba
commit
e8f25a7072
1 changed files with 9 additions and 1 deletions
|
@ -607,6 +607,14 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
value: item.name,
|
value: item.name,
|
||||||
width: width
|
width: width
|
||||||
}),
|
}),
|
||||||
|
Ox.Input({
|
||||||
|
disabled: true,
|
||||||
|
id: 'id',
|
||||||
|
label: Ox._('ID'),
|
||||||
|
labelWidth: labelWidth,
|
||||||
|
value: item.id,
|
||||||
|
width: width
|
||||||
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
id: 'extension',
|
id: 'extension',
|
||||||
|
@ -644,7 +652,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
id: 'username',
|
id: 'username',
|
||||||
label: Ox._('Username'),
|
label: Ox._('User'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: item.user,
|
value: item.user,
|
||||||
width: width
|
width: width
|
||||||
|
|
Loading…
Reference in a new issue