moved path to left

This commit is contained in:
Hemanth 2025-06-29 11:17:40 +05:30
parent c9ec3e449c
commit 9cdf7042ba

View file

@ -518,6 +518,13 @@
</div> </div>
</template> </template>
<template v-if="monitor.type === 'rtsp'">
<div class="my-3">
<label for="rtspPath" class="form-label">RTSP {{ $t("path") }}</label>
<input id="rtspPath" v-model="monitor.rtspPath" :placeholder="$t('Path')" type="text" class="form-control">
</div>
</template>
<template v-if="monitor.type === 'radius'"> <template v-if="monitor.type === 'radius'">
<div class="my-3"> <div class="my-3">
<label for="radius_username" class="form-label">Radius {{ $t("Username") }}</label> <label for="radius_username" class="form-label">Radius {{ $t("Username") }}</label>
@ -1069,10 +1076,6 @@
<label for="rtspPassword" class="form-label">RTSP {{ $t("Password") }}</label> <label for="rtspPassword" class="form-label">RTSP {{ $t("Password") }}</label>
<input id="rtspPassword" v-model="monitor.rtspPassword" :placeholder="$t('Password')" type="password" class="form-control"> <input id="rtspPassword" v-model="monitor.rtspPassword" :placeholder="$t('Password')" type="password" class="form-control">
</div> </div>
<div class="my-3">
<label for="rtspPath" class="form-label">RTSP {{ $t("path") }}</label>
<input id="rtspPath" v-model="monitor.rtspPath" :placeholder="$t('Path')" type="text" class="form-control">
</div>
</template> </template>
<!-- gRPC Options --> <!-- gRPC Options -->