Skip to content

Commit

Permalink
Merge pull request #154 from theImmortalCoders/dev
Browse files Browse the repository at this point in the history
fix: #dev socket timeout limit
  • Loading branch information
marcinbator authored Nov 16, 2024
2 parents 9bab69d + 108fc8a commit 5dd719f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { UrlParamService } from 'app/shared/services/url-param.service';
type="number"
#sendingIntervalInput
class="custom-input w-52 my-2"
min="10"
min="50"
max="1000"
step="10"
[defaultValue]="vSendingInterval.value"
Expand Down Expand Up @@ -67,6 +67,10 @@ export class SocketConnectedMenuComponent implements OnInit {
}

public updateValue(value: number): void {
if (value < 50) {
value = 50;
}

this.vSendingInterval.value = value;

this._urlParamService.setQueryParam(
Expand Down

0 comments on commit 5dd719f

Please sign in to comment.