diff --git a/controllers/timetable.go b/controllers/timetable.go
index b1d5eb1..58267dd 100644
--- a/controllers/timetable.go
+++ b/controllers/timetable.go
@@ -55,9 +55,9 @@ func (b *BaseHandler) printTimetable(timetable map[models.Date]map[int]models.Of
for minute := 0; minute < 60; minute += b.config.Date.MinuteGranularity {
tableBody += "
"
if minute == 0 {
- tableBody += fmt.Sprintf("%d Uhr | \n", hour)
+ tableBody += fmt.Sprintf("%d Uhr | \n", hour)
} else {
- tableBody += " | \n"
+ tableBody += " | \n"
}
for day := 0; day < 5; day += 1 {
for slot := 0; slot < slots[day]; slot += 1 {
@@ -96,7 +96,7 @@ func (b *BaseHandler) printTimetable(timetable map[models.Date]map[int]models.Of
}
} else {
if slot+1 == slots[day] {
- tableBody += " | \n"
+ tableBody += " | \n"
} else {
tableBody += " | \n"
}
diff --git a/templating/templates/addMask.html b/templating/templates/addMask.html
index 2e55602..00a9d6b 100644
--- a/templating/templates/addMask.html
+++ b/templating/templates/addMask.html
@@ -14,17 +14,6 @@
{{end}}
-