[F] Fix repeats

This commit is contained in:
Hykilpikonna
2021-01-23 23:54:24 -05:00
parent 3129dc5b80
commit dda2d48ea0
3 changed files with 27 additions and 24 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ class AlarmTableCell: UITableViewCell
// displays the specific days alarm is activated
let daysDict = ["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"]
var daysActive : [String] = []
if alarm.oneTime {repeatText.text = "No Repeat"}
if alarm.oneTime {repeatText.text = "One-time Alarm"}
else {
for (index, element) in alarm.repeats.enumerated() {
if element {