Merge pull request #107 from YasinKose/main

Feat(ui): add Turkish language support and UI enhancements

Introduces Turkish language support and several UI/UX improvements to the web management interface.
This commit is contained in:
Yasin Köse
2026-01-14 11:08:50 +03:00
committed by GitHub
parent 84cdf3571f
commit cc64b93f32
10 changed files with 393 additions and 28 deletions

View File

@@ -235,8 +235,9 @@ document.addEventListener('alpine:init', () => {
isHidden = (family === 'other' || family === 'unknown');
}
// Models Page: ALWAYS hide hidden models (use Settings to restore)
if (isHidden) return;
// Models Page: Check settings for visibility
const showHidden = Alpine.store('settings')?.showHiddenModels ?? false;
if (isHidden && !showHidden) return;
// Filters
if (this.filters.family !== 'all' && this.filters.family !== family) return;