Update SerwerSMS.vue

This commit is contained in:
miesiu 2025-07-18 13:22:37 +02:00 committed by GitHub
parent 968d22b8a7
commit 5f19620595
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,12 +12,12 @@
<div class="mb-3"> <div class="mb-3">
<label class="form-label">{{ $t("serwersmsDestinationType") }}</label><br> <label class="form-label">{{ $t("serwersmsDestinationType") }}</label><br>
<div class="form-check form-check-inline"> <div class="form-check form-check-inline">
<input class="form-check-input" v-model="$parent.notification.destinationType" type="radio" id="dest-phone" value="phone" required> <input id="dest-phone" v-model="$parent.notification.destinationType" type="radio" class="form-check-input" value="phone" required>
<label class="form-check-label" for="dest-phone">{{ $t("serwersmsPhoneNumber") }}</label> <label class="form-check-label" for="dest-phone">{{ $t("serwersmsPhoneNumber") }}</label>
</div> </div>
<div class="form-check form-check-inline"> <div class="form-check form-check-inline">
<input class="form-check-input" v-model="$parent.notification.destinationType" type="radio" id="dest-group" value="group"> <input id="dest-group" v-model="$parent.notification.destinationType" type="radio" class="form-check-input" value="group">
<label class="form-check-label" for="dest-group">{{ $t("serwersmsGroupId") }}</label> <label class="form-check-label" for="dest-group">{{ $t("serwersmsGroupId") }}</label>
</div> </div>
</div> </div>