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 518697f commit 612668aCopy full SHA for 612668a
src/lib/RoomsList/RoomsList.vue
@@ -109,7 +109,9 @@ export default {
109
110
computed: {
111
filteredRooms() {
112
- return filteredItems(this.rooms || [], 'roomName', this.filter)
+ return this.customSearchRoomEnabled
113
+ ? this.rooms || []
114
+ : filteredItems(this.rooms || [], 'roomName', this.filter)
115
}
116
},
117
@@ -220,12 +222,6 @@ export default {
220
222
221
223
if (this.customSearchRoomEnabled) {
224
this.$emit('search-room', this.filter)
- } else {
- this.filteredRooms = filteredItems(
225
- this.rooms,
226
- 'roomName',
227
- this.filter
228
- )
229
230
231
openRoom(room) {
0 commit comments