this, closes #3118

This commit is contained in:
j 2023-07-08 19:02:37 +05:30
parent 11c8bb9076
commit 6fb635ebf8
1 changed files with 5 additions and 1 deletions

View File

@ -104,7 +104,11 @@ pandora.ui.folderList = function(id, section) {
operator: '+',
tooltip: function(data) {
return data.type == 'static'
? (data.editable ? Ox._('Edit {0}', [Ox._(folderItem)]) : '')
? (data.editable
? folderItem == "Edit"
? Ox._('Edit this {0}', [Ox._(folderItem)])
: Ox._('Edit {0}', [Ox._(folderItem)])
: '')
: data.type == 'smart'
? (data.editable ? Ox._('Edit Query') : Ox._('Show Query'))
: data.type.toUpperCase();