Skip to content

Commit 5c1c6d5

Browse files
committed
Make todo list easier to read and correct grammar
1 parent ac59484 commit 5c1c6d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/TodoList.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ h3 {
55
ul {
66
list-style-type: none;
77
padding: 0;
8+
line-height: 150%;
89
}
910

1011
li {

src/components/TodoList.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
overdue: new Date(todo.dueDate + ' 23:59:59.999') < new Date(),
1818
}"
1919
>{{ todo.task }}: Due {{ todo.dueDate }} Priority:
20-
{{ todo.priority }} Difficulty: {{ todo.difficulty }} Repeat:<span
21-
v-if="todo.repeatFrequency != 5"
22-
>{{ todo.repeatOften }}</span
20+
{{ todo.priority }} Difficulty: {{ todo.difficulty }} Repeat:
21+
<span v-if="todo.repeatFrequency != 5">{{ todo.repeatOften }}</span
2322
>&nbsp;<span v-if="todo.repeatFrequency == 1">Day</span
2423
><span v-if="todo.repeatFrequency == 2">Week</span
2524
><span v-if="todo.repeatFrequency == 3">Month</span

0 commit comments

Comments
 (0)