Puts display name in h1 tag

This commit is contained in:
Aaron Louie 2020-02-25 16:42:36 -05:00
parent 9f8cce615d
commit 2ec2ebbb49
2 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,7 @@ describe('workspace-project App', () => {
it('should click sign-in and navigate to home screen', () => { it('should click sign-in and navigate to home screen', () => {
page.clickAndExpectRoute('#sign_in', '/'); page.clickAndExpectRoute('#sign_in', '/');
expect(page.getElements('app-workflow-spec-list').count()).toBeGreaterThan(0);
expect(page.getElements('app-file-list').count()).toBeGreaterThan(0); expect(page.getElements('app-file-list').count()).toBeGreaterThan(0);
}); });

View File

@ -11,13 +11,13 @@
<mat-card-header> <mat-card-header>
<mat-card-title> <mat-card-title>
<h1> <h1>
{{wfs.id}} {{wfs.display_name}}
<button mat-mini-fab color="primary" (click)="editWorkflowSpec(wfs)"><mat-icon>edit</mat-icon></button> <button mat-mini-fab color="primary" (click)="editWorkflowSpec(wfs)"><mat-icon>edit</mat-icon></button>
</h1> </h1>
</mat-card-title> </mat-card-title>
<mat-card-subtitle> <mat-card-subtitle>
<h2>{{wfs.name}}</h2> <h2>{{wfs.name}}</h2>
<h3>{{wfs.display_name}}</h3> <h3>{{wfs.id}}</h3>
</mat-card-subtitle> </mat-card-subtitle>
<span fxFlex></span> <span fxFlex></span>
<button mat-icon-button title="Delete this workflow specification" color="warn" (click)="confirmDeleteWorkflowSpec(wfs)"> <button mat-icon-button title="Delete this workflow specification" color="warn" (click)="confirmDeleteWorkflowSpec(wfs)">