Skip to content

Commit b99575f

Browse files
committed
Fix text not adding a space after number and before units for repetition
1 parent 4623539 commit b99575f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/TodoList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
}"
1414
>{{ todo.task }}: Due {{ todo.dueDate }} Priority:
1515
{{ todo.priority }} Difficulty: {{ todo.difficulty }} Repeat:
16-
<span v-if="todo.repeatFrequency != 5">{{ todo.repeatOften }}</span>
17-
<span v-if="todo.repeatFrequency == 1">Day</span
16+
<span v-if="todo.repeatFrequency != 5">{{ todo.repeatOften }}</span
17+
>&nbsp;<span v-if="todo.repeatFrequency == 1">Day</span
1818
><span v-if="todo.repeatFrequency == 2">Week</span
1919
><span v-if="todo.repeatFrequency == 3">Month</span
2020
><span v-if="todo.repeatFrequency == 4">Year</span

0 commit comments

Comments
 (0)