Compare commits
2 commits
9833eae0fe
...
459f65154e
Author | SHA1 | Date | |
---|---|---|---|
459f65154e | |||
7582d8a50c |
2 changed files with 3 additions and 2 deletions
|
@ -392,6 +392,7 @@
|
|||
"date": "{date}",
|
||||
"tag": "{tags}",
|
||||
"summary": "{description}",
|
||||
"notes": "Imported from {url}",
|
||||
"title": "{title}"
|
||||
},
|
||||
/*
|
||||
|
|
|
@ -294,7 +294,7 @@ pandora.ui.infoView = function(data, isMixed) {
|
|||
.append(
|
||||
Ox.EditableContent({
|
||||
editable: canEdit,
|
||||
placeholder: formatLight(Ox._(isMixed ? 'Mixed Titles' : 'No title')),
|
||||
placeholder: formatLight(Ox._(isMixed.title ? 'Mixed Titles' : 'No title')),
|
||||
tooltip: canEdit ? pandora.getEditTooltip() : '',
|
||||
value: data.title || ''
|
||||
})
|
||||
|
@ -494,7 +494,7 @@ pandora.ui.infoView = function(data, isMixed) {
|
|||
.append(
|
||||
Ox.EditableContent({
|
||||
height: 128,
|
||||
placeholder: formatLight(Ox._(isMixed ? 'Mixed Notes' : 'No notes')),
|
||||
placeholder: formatLight(Ox._(isMixed.notes ? 'Mixed Notes' : 'No notes')),
|
||||
tooltip: pandora.getEditTooltip(),
|
||||
type: 'textarea',
|
||||
value: data.notes || '',
|
||||
|
|
Loading…
Add table
Reference in a new issue