Make the monitor type list a bit clear

This commit is contained in:
Louis Lam 2022-06-13 18:14:47 +08:00
parent e1681ce370
commit d4485fe62f

View file

@ -11,6 +11,7 @@
<div class="my-3"> <div class="my-3">
<label for="type" class="form-label">{{ $t("Monitor Type") }}</label> <label for="type" class="form-label">{{ $t("Monitor Type") }}</label>
<select id="type" v-model="monitor.type" class="form-select"> <select id="type" v-model="monitor.type" class="form-select">
<optgroup label="General Monitor Type">
<option value="http"> <option value="http">
HTTP(s) HTTP(s)
</option> </option>
@ -26,9 +27,15 @@
<option value="dns"> <option value="dns">
DNS DNS
</option> </option>
</optgroup>
<optgroup label="Passive Monitor Type">
<option value="push"> <option value="push">
Push Push
</option> </option>
</optgroup>
<optgroup label="Specific Monitor Type">
<option value="steam"> <option value="steam">
{{ $t("Steam Game Server") }} {{ $t("Steam Game Server") }}
</option> </option>
@ -38,6 +45,7 @@
<option value="sqlserver"> <option value="sqlserver">
SQL Server SQL Server
</option> </option>
</optgroup>
</select> </select>
</div> </div>