Show explicit help text when search doesn't match

This commit is contained in:
floy 2026-01-10 15:39:02 +01:00
parent b4e00538f8
commit fd0209dbc0

View file

@ -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>
); );