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>
<input id="stockInput"
matInput
maxlength="5"
minlength="1"
[(ngModel)]="symbolInput"/>
</mat-form-field>
<button id="trackBtn"
mat-stroked-button
color="primary"
[disabled]="disabled"
[disabled]="disabled || symbolInput.length == 0"
(click)="addSymbol()">Track Stock
</button>
</div>