We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b5d2f3 commit 3326a2bCopy full SHA for 3326a2b
app/src/main/java/com/dongyang/android/youdongknowme/ui/view/cafeteria/CafeteriaViewModel.kt
@@ -74,7 +74,8 @@ class CafeteriaViewModel(
74
fun updateMenuList(selectedDate: LocalDate) {
75
val cafeteriaList = _cafeteriaList.value ?: emptyList()
76
_selectedDate.value = selectedDate
77
- _koreanMenus.postValue(cafeteriaList.find { it.date == selectedDate.toString() }?.menus ?: emptyList()
+ _koreanMenus.postValue(
78
+ cafeteriaList.find { it.date == selectedDate.toString() }?.menus ?: emptyList()
79
)
80
}
81
0 commit comments