Don't show 'No sounds loaded' text if search is active

This commit is contained in:
floy 2026-01-10 15:30:07 +01:00
parent 37dd834398
commit b4e00538f8

View file

@ -210,7 +210,7 @@ export function SoundsTab() {
) : ( ) : (
'' ''
)} )}
{!soundEntries.length && soundsFilter !== 'importSounds' ? 'No sounds loaded' : ''} {!soundEntries.length && soundsFilter !== 'importSounds' && search == '' ? 'No sounds loaded' : ''}
</div> </div>
</div> </div>
); );