Enhance VocabService logging and update VocabCourseListView state management

- Added debug logging in VocabService to track course retrieval details, aiding in troubleshooting and performance monitoring.
- Updated VocabCourseListView to include additional state properties for managing share codes and search functionality, improving user experience and interaction capabilities.
This commit is contained in:
Torsten Schulz (local)
2026-01-19 13:03:06 +01:00
parent f902f5298c
commit df5c2a3141
2 changed files with 16 additions and 0 deletions

View File

@@ -141,10 +141,17 @@ export default {
courses: [],
languages: [],
showCreateDialog: false,
showShareCodeDialog: false,
searchTerm: '',
selectedLanguageId: '',
selectedNativeLanguageId: '',
shareCode: '',
searchTimeout: null,
newCourse: {
title: '',
description: '',
languageId: null,
nativeLanguageId: null,
difficultyLevel: 1,
isPublic: false
}