Skip to content

Commit

Permalink
Fixing hideCompleted
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbyt3r committed Dec 7, 2023
1 parent d8611fd commit 8c0795c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/rooming/Assignments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export default {
this.roomCount = result.count
this.rooms = result.hotel_rooms
} else {
let query = { full: true, limit: 25, offset: this.roomOffset, completed: false, sort: 'modified', order: 'desc', count: true };
let query = { full: true, limit: 25, offset: this.roomOffset, sort: 'modified', order: 'desc', count: true };
if (this.block != null) {
query.hotel_block = this.block;
}
Expand Down

0 comments on commit 8c0795c

Please sign in to comment.