fix equals, update without changes

This commit is contained in:
2024-10-07 16:04:06 +02:00
parent 712cdec554
commit 59b5c2f323
6 changed files with 17 additions and 16 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "buntspecht-web",
"version": "0.4.2",
"version": "0.4.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "buntspecht-web",
"version": "0.4.2",
"version": "0.4.3",
"license": "AGPL3",
"dependencies": {
"@angular/animations": "^18.2.7",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "buntspecht-web",
"version": "0.4.2",
"version": "0.4.3",
"license": "AGPL3",
"scripts": {
"ng": "ng",
@@ -145,7 +145,7 @@ export class PageTurnover implements OnInit {
}
this.working = true;
this.turnover.dueDate = this.form.get("dueDate").value;
this.turnover.dueDate = this.form.get("dueDate").value || this.turnover.created;
this.turnover.customer = this.form.get("customer").value;
this.turnover.motif = this.form.get("motif").value;
this.turnover.price = this.form.get("price").value;