create ER diagram, refactor to conform to diagram, simplify session management
This commit is contained in:
@@ -14,7 +14,7 @@ struct SetListItem: View {
|
||||
var body: some View {
|
||||
HStack {
|
||||
HStack {
|
||||
Text(String(set.reps))
|
||||
Text(String(set.plannedReps))
|
||||
.font(.system(size: 14, weight: .bold))
|
||||
.foregroundStyle(.white)
|
||||
.frame(width: 20, height: 10)
|
||||
@@ -27,7 +27,7 @@ struct SetListItem: View {
|
||||
.fontWeight(.bold)
|
||||
Spacer()
|
||||
Stepper(
|
||||
value: $set.reps,
|
||||
value: $set.plannedReps,
|
||||
in: 0...100,
|
||||
step: 1
|
||||
) {}
|
||||
|
||||
Reference in New Issue
Block a user