Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/ui/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class AppComponent implements AfterViewInit {
menuItems: AddMenuItem[] = [
{
svgIcon: 'testrun_logo_small',
label: 'Create new Testrun',
label: 'Start Testing',
description: 'Configure your testing tasks',
onClick: this.navigateToRuntime,
disabled$: this.appStore.testrunButtonDisabled$,
Expand All @@ -153,7 +153,7 @@ export class AppComponent implements AfterViewInit {
},
{
icon: 'rule',
label: 'Create new profile',
label: 'Create new Risk profile',
onClick: this.navigateToAddRiskAssessment,
disabled$: of(false),
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<div class="side-add-button-container">
<button class="side-add-button" mat-fab (click)="menuTrigger.openMenu()">
<button
class="side-add-button"
mat-fab
(click)="menuTrigger.openMenu()"
aria-label="Actions">
<mat-icon>add</mat-icon>
</button>
<div
Expand Down
Loading