-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Electron Storage working, Config Validation works, still some work to do
- Loading branch information
1 parent
be4cbad
commit 043af84
Showing
17 changed files
with
459 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
<div *ngIf="configService.config" class="container"> | ||
<app-job-status></app-job-status> | ||
<app-printer-status></app-printer-status> | ||
<app-layer-progress></app-layer-progress> | ||
<app-bottom-bar></app-bottom-bar> | ||
<div *ngIf="configService.valid"> | ||
<app-job-status></app-job-status> | ||
<app-printer-status></app-printer-status> | ||
<app-layer-progress></app-layer-progress> | ||
<app-bottom-bar></app-bottom-bar> | ||
</div> | ||
<div *ngIf="!configService.valid"> | ||
<app-invalid-config></app-invalid-config> | ||
</div> | ||
</div> | ||
<div *ngIf="!configService.config"> | ||
<app-no-config></app-no-config> | ||
</div> |
Oops, something went wrong.