Show explicit help text when search doesn't match
This commit is contained in:
parent
b4e00538f8
commit
fd0209dbc0
1 changed files with 4 additions and 1 deletions
|
|
@ -210,7 +210,10 @@ export function SoundsTab() {
|
||||||
) : (
|
) : (
|
||||||
''
|
''
|
||||||
)}
|
)}
|
||||||
{!soundEntries.length && soundsFilter !== 'importSounds' && search == '' ? 'No sounds loaded' : ''}
|
{!soundEntries.length && soundsFilter !== 'importSounds' ?
|
||||||
|
search == '' ? 'No sounds loaded' : 'No sounds found'
|
||||||
|
: ''
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue