bug fix
This commit is contained in:
parent
8b67a7ee6f
commit
a82cc55e0c
@ -1779,10 +1779,10 @@
|
||||
},
|
||||
displayTasks(category = 'all', searchQuery) {
|
||||
// render tasks
|
||||
if (!RIBC) return
|
||||
if (!RIBC) return html``;
|
||||
const allTasks = RIBC.getAllTasks();
|
||||
const displayedTasks = RIBC.getDisplayedTasks()
|
||||
if (!displayedTasks || !Array.isArray(displayedTasks)) return
|
||||
if (!displayedTasks || !Array.isArray(displayedTasks)) return html``;
|
||||
const filterCategory = category === 'all' ? false : category;
|
||||
const filtered = []
|
||||
const availableCategories = new Set();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user