Skip to content

Commit

Permalink
Merge pull request #83 from EoinGriffin-AI/Bugfix-ArrayList
Browse files Browse the repository at this point in the history
Bugfix: Restoring broken functionality for array lists
  • Loading branch information
dsternlicht authored Oct 11, 2019
2 parents 6141b8c + 81f4d64 commit bf14847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/main-view/main-view.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<main>
<app-get [pageData]="pageData" (stateChanged)="showPopup($event)"></app-get>
<put-dialog [visible]="popupState === 'put' || popupState === 'customActions' && !loading" (stateChanged)="showPopup($event)" [(rowData)]="selectedRow" [pageData]="pageData" [state]="popupState"></put-dialog>
<put-dialog [visible]="(popupState === 'put' || popupState === 'customActions') && !loading" (stateChanged)="showPopup($event)" [(rowData)]="selectedRow" [pageData]="pageData" [state]="popupState"></put-dialog>
<post-dialog [visible]="popupState === 'post'" (stateChanged)="showPopup($event)" [pageData]="pageData"></post-dialog>
</main>

0 comments on commit bf14847

Please sign in to comment.