Skip to content

Commit

Permalink
work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
gehelem committed Dec 26, 2022
1 parent 38eacba commit f6a3686
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ng build
sudo rm -Rf /var/www/html/*
sudo cp -R ./dist/* /var/www/html
sudo chown -R www-data /var/www/html/
sudo service nginx restart
2 changes: 1 addition & 1 deletion src/app/prop/prop.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</ng-container>
</table>

<ng-container *ngIf="this.ws.datastore.mods[mod].prps[prop].grid2.length>0">
<ng-container *ngIf="this.ws.datastore.mods[mod].prps[prop].grid2.length>10000000">

<table #mytable mat-table [dataSource]="this.ws.datastore.mods[mod].prps[prop].grid2" class="mat-elevation-z8 demo-table">
<ng-container *ngFor="let e of this.ws.datastore.mods[mod].prps[prop].elts | keyvalue:originalOrderElt" [matColumnDef]="e.key">
Expand Down
2 changes: 1 addition & 1 deletion src/datastructure/datastore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class Datastore {
//currentMod: string='focus1';
//currentDev: string='Control';
//currentGrp: string='';
currentMod: string='allsky';
currentMod: string='guider1';
currentDev: string='Controls';
currentGrp: string='';

Expand Down

0 comments on commit f6a3686

Please sign in to comment.