From 5863e7fb319a7634c16fb2df6b1dba84345b31a6 Mon Sep 17 00:00:00 2001 From: j Date: Wed, 20 Nov 2019 13:37:16 +0100 Subject: [PATCH] fix mixed notes --- static/js/infoView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/infoView.js b/static/js/infoView.js index e95d2682..6e68a95a 100644 --- a/static/js/infoView.js +++ b/static/js/infoView.js @@ -368,7 +368,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 || '',