File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
java/org/fossasia/openevent/general/favorite Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,10 @@ class FavoriteFragment : Fragment() {
150
150
}
151
151
152
152
private fun openSearchResult (time : String ) {
153
- SearchResultsFragmentArgs (query = " " , location = Preference ().getString(SAVED_LOCATION ).toString(), date = time)
153
+ SearchResultsFragmentArgs (query = " " ,
154
+ location = Preference ().getString(SAVED_LOCATION ).toString(),
155
+ type = getString(R .string.anything),
156
+ date = time)
154
157
.toBundle()
155
158
.also { bundle ->
156
159
findNavController(rootView).navigate(R .id.searchResultsFragment, bundle, Utils .getAnimSlide())
Original file line number Diff line number Diff line change 41
41
android : layout_width =" wrap_content"
42
42
android : layout_height =" wrap_content"
43
43
android : text =" @string/today"
44
+ android : checkable =" false"
44
45
android : id =" @+id/todayChip" />
45
46
46
47
<com .google.android.material.chip.Chip
47
48
android : layout_width =" wrap_content"
48
49
android : layout_height =" wrap_content"
49
50
android : text =" @string/tomorrow"
51
+ android : checkable =" false"
50
52
android : id =" @+id/tomorrowChip" />
51
53
52
54
<com .google.android.material.chip.Chip
53
55
android : layout_width =" wrap_content"
54
56
android : layout_height =" wrap_content"
55
57
android : text =" @string/weekend"
58
+ android : checkable =" false"
56
59
android : id =" @+id/weekendChip" />
57
60
58
61
<com .google.android.material.chip.Chip
59
62
android : layout_width =" wrap_content"
60
63
android : layout_height =" wrap_content"
61
64
android : text =" @string/month"
62
65
android : textSize =" @dimen/text_size_small"
66
+ android : checkable =" false"
63
67
android : id =" @+id/monthChip" />
64
68
</com .google.android.material.chip.ChipGroup>
65
69
You can’t perform that action at this time.
0 commit comments