From ce0fbb64bd7a2e504995479ab3944c2afdb5b30c Mon Sep 17 00:00:00 2001 From: Sebastian Neubauer Date: Sun, 28 Jun 2026 18:46:45 +0200 Subject: [PATCH] Fix image filtering --- .../openflocon/flocondesktop/features/images/ImagesViewModel.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/ImagesViewModel.kt b/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/ImagesViewModel.kt index f0b9fc6ef..c7bc9066a 100644 --- a/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/ImagesViewModel.kt +++ b/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/ImagesViewModel.kt @@ -54,6 +54,7 @@ class ImagesViewModel( fun onFilterChanged(text: String) { viewModelScope.launch(dispatcherProvider.viewModel) { + filter.emit(text) } }