Skip to content

Commit

Permalink
fix: temporarily disable broken icons
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasphil committed Dec 13, 2024
1 parent f40350f commit c865228
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/views/Page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,35 +191,35 @@ const dueDateCompletions: AutoComplete = {
{
id: "today",
name: "Today",
icon: renderSvgFromString(Calendar),
// icon: renderSvgFromString(Calendar),
initial: true,
value: () => dayjs().format("@YYYY-MM-DD"),
},
{
id: "tomorrow",
name: "Tomorrow",
icon: renderSvgFromString(Calendar),
// icon: renderSvgFromString(Calendar),
initial: true,
value: () => dayjs().add(1, "day").format("@YYYY-MM-DD"),
},
{
id: "next-week",
name: "Next week",
icon: renderSvgFromString(Calendar),
// icon: renderSvgFromString(Calendar),
initial: true,
value: () => dayjs().add(1, "week").startOf("week").format("@YYYY-MM-DD"),
},
{
id: "end-of-week",
name: "End of week",
icon: renderSvgFromString(Calendar),
// icon: renderSvgFromString(Calendar),
initial: true,
value: () => dayjs().weekday(4).format("@YYYY-MM-DD"),
},
{
id: "custom",
name: "Custom",
icon: renderSvgFromString(CalendarSearch),
// icon: renderSvgFromString(CalendarSearch),
initial: true,
value: () => {
beginUpdateDueDate();
Expand Down

0 comments on commit c865228

Please sign in to comment.