feat(settings): Improve Extra Folder Paths UX with restart indicators

- Replace tooltip with restart-required icon for better visibility
- Update descriptions to accurately reflect feature purpose
- Fix toast message to show correct restart notification
- Sync i18n keys across all supported languages
This commit is contained in:
Will Miao
2026-04-02 08:55:30 +08:00
parent 4dd2c0526f
commit 3e9210394a
13 changed files with 33 additions and 32 deletions

View File

@@ -1461,7 +1461,7 @@ export class SettingsManager {
try {
// Save to backend - this triggers path validation
await this.saveSetting('extra_folder_paths', extraFolderPaths);
showToast('toast.settings.settingsUpdated', { setting: 'Extra Folder Paths' }, 'success');
showToast('settings.extraFolderPaths.saveSuccess', {}, 'success');
// Add empty row if no valid paths exist for the changed type
const container = document.getElementById(`extraFolderPaths-${changedModelType}`);