Skip to content

Commit 7e68917

Browse files
committed
fix: min connections cannot be less than 0
1 parent d606a37 commit 7e68917

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/app/coupling/graph/graph.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<mat-form-field appearance="outline" style="flex: 1">
1010
<mat-label>Min. Connections</mat-label>
11-
<input type="number" matInput [formControl]="minConnectionsControl" />
11+
<input type="number" matInput [formControl]="minConnectionsControl" min="0" />
1212
</mat-form-field>
1313
</div>
1414

0 commit comments

Comments
 (0)