Skip to content

Commit ea73917

Browse files
committed
frequency input should be limited to numbers
1 parent 3dbf6c7 commit ea73917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@
10881088
<!-- interface frequency -->
10891089
<div v-if="newInterfaceType === 'RNodeInterface'" class="mb-2">
10901090
<label class="block mb-2 text-sm font-medium text-gray-900">Frequency (Hz)</label>
1091-
<input type="text" v-model="newInterfaceFrequency" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5">
1091+
<input type="number" v-model="newInterfaceFrequency" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5">
10921092
<div class="text-xs text-gray-600">{{ formatFrequency(newInterfaceFrequency) }}</div>
10931093
</div>
10941094

0 commit comments

Comments
 (0)