Merge pull request 'Improve hint text when sound search has no results' (#1883) from floy/strudel:improve-help-text-filtered into main
Reviewed-on: https://codeberg.org/uzu/strudel/pulls/1883
This commit is contained in:
commit
f867cbce92
1 changed files with 5 additions and 1 deletions
|
|
@ -210,7 +210,11 @@ export function SoundsTab() {
|
|||
) : (
|
||||
''
|
||||
)}
|
||||
{!soundEntries.length && soundsFilter !== 'importSounds' ? 'No sounds loaded' : ''}
|
||||
{!soundEntries.length && soundsFilter !== 'importSounds'
|
||||
? search == ''
|
||||
? 'No sounds loaded'
|
||||
: 'No sounds found'
|
||||
: ''}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue