penyasuaian UI dashboard

This commit is contained in:
2024-06-13 23:57:07 +07:00
parent 863a493b66
commit fb1ba66cd0
6 changed files with 44 additions and 18 deletions

View File

@@ -54,7 +54,7 @@ export class AddEditMasterBuildingComponent {
owner: this.dataRow.owner,
address: this.dataRow.address,
phone: this.dataRow.phone,
kwh: this.dataRow.phone,
kwh: this.dataRow.kwh,
});
}
@@ -65,8 +65,10 @@ export class AddEditMasterBuildingComponent {
(item) => item.name === "master_status"
);
this.dataStatus = this.dataMasterStatus.headerDetailParam;
console.log(this.dataStatus);
this.filteredDataStatus = this.dataStatus.filter(
(item) => item.status === "1"
(item) => item.status === "2"
);
});
}