fix comments placeholder
This commit is contained in:
parent
62261f2a10
commit
7af94dfa3a
2 changed files with 2 additions and 2 deletions
|
@ -389,7 +389,7 @@ pandora.ui.documentInfoView = function(data, isMixed) {
|
||||||
.append(
|
.append(
|
||||||
Ox.EditableContent({
|
Ox.EditableContent({
|
||||||
height: 128,
|
height: 128,
|
||||||
placeholder: formatLight(Ox._(isMixed ? 'Mixed comments' : 'No comments')),
|
placeholder: formatLight(Ox._(isMixed.comments ? 'Mixed comments' : 'No comments')),
|
||||||
tooltip: pandora.getEditTooltip(),
|
tooltip: pandora.getEditTooltip(),
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
value: data.comments || '',
|
value: data.comments || '',
|
||||||
|
|
|
@ -354,7 +354,7 @@ pandora.ui.infoView = function(data, isMixed) {
|
||||||
.append(
|
.append(
|
||||||
Ox.EditableContent({
|
Ox.EditableContent({
|
||||||
height: 128,
|
height: 128,
|
||||||
placeholder: formatLight(Ox._(isMixed ? 'Mixed notes' : 'No notes')),
|
placeholder: formatLight(Ox._(isMixed.notes ? 'Mixed notes' : 'No notes')),
|
||||||
tooltip: pandora.getEditTooltip(),
|
tooltip: pandora.getEditTooltip(),
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
value: data.notes || '',
|
value: data.notes || '',
|
||||||
|
|
Loading…
Reference in a new issue