Skip to content

Commit

Permalink
add "expired" filter
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorVilas committed Jan 13, 2023
1 parent 669848f commit 1ef7cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const ui = (() => {
const listDue = document.createElement("ul");
listDue.classList.add("fieldset-list", "due-list");

const filters = ["Today", "This week", "This month", "This year", "Pinned", "Favorites"];
const filters = ["Today", "This week", "This month", "This year", "Expired", "Pinned", "Favorites"];
for(let i = 0; i < filters.length; i++){
const li = document.createElement("li");
li.classList.add("menu-filter", "menu-item");
Expand Down

0 comments on commit 1ef7cb1

Please sign in to comment.