fix select (#133)
All checks were successful
Backend Build and Test / build (push) Successful in 3m9s
Backend Deploy / build (push) Successful in 20s

closes #117

Reviewed-on: #133
This commit was merged in pull request #133.
This commit is contained in:
2025-05-28 11:47:11 +02:00
parent 604b92b3b3
commit 9cbb8756d1
10 changed files with 52 additions and 13 deletions

View File

@@ -15,6 +15,7 @@ export class EditAllowancePage implements OnInit {
public goalId: number;
public userId: number;
public isAddMode: boolean;
public selectedColor: string = '';
public possibleColors: Array<string> = [
'#6199D9',
'#D98B61',
@@ -73,6 +74,7 @@ export class EditAllowancePage implements OnInit {
weight: allowance.weight,
color: allowance.colour
});
this.selectedColor = this.form.value.color;
}
});
}