mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Use the correct query variable
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
a45cfbc2d2
commit
35a7a4f313
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@
|
|||
$status.addClass('emptycontent').removeClass('status');
|
||||
$status.html('');
|
||||
$status.append('<div class="icon-search"></div>');
|
||||
$status.append('<h2>' + t('core', 'No search results in other folders {filter}', {filter:this._filter}) + '</h2>');
|
||||
$status.append('<h2>' + t('core', 'No search results in other folders {filter}', {filter:lastQuery}) + '</h2>');
|
||||
} else {
|
||||
$status.removeClass('emptycontent').addClass('status');
|
||||
$status.text(n('core', '{count} search result in another folder', '{count} search results in other folders', count, {count:count}));
|
||||
|
|
|
|||
Loading…
Reference in a new issue