Skip to content

Commit

Permalink
LoadPanel/Overview/Angular (cherry picked from commit f0de6ae)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpreyskurantov committed Oct 16, 2024
1 parent c66b59e commit e6dee6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if (window && window.config.packageConfigPaths) {
export class AppComponent {
employee: Employee;

employeeInfo: Employee | null = null;
employeeInfo = new Employee();

loadingVisible = false;

Expand All @@ -45,7 +45,7 @@ export class AppComponent {
}

showLoadPanel() {
this.employeeInfo = null;
this.employeeInfo = new Employee();
this.loadingVisible = true;
}
}
Expand Down

0 comments on commit e6dee6c

Please sign in to comment.