Fixed tests.

This commit is contained in:
Daniel Scheidle
2022-11-09 19:56:44 +01:00
parent 2fb49ca943
commit f000799dfd

View File

@@ -8,13 +8,15 @@
<mat-form-field> <mat-form-field>
<input id="stockInput" <input id="stockInput"
matInput matInput
maxlength="5"
minlength="1"
[(ngModel)]="symbolInput"/> [(ngModel)]="symbolInput"/>
</mat-form-field> </mat-form-field>
<button id="trackBtn" <button id="trackBtn"
mat-stroked-button mat-stroked-button
color="primary" color="primary"
[disabled]="disabled" [disabled]="disabled || symbolInput.length == 0"
(click)="addSymbol()">Track Stock (click)="addSymbol()">Track Stock
</button> </button>
</div> </div>