Skip to content

Commit

Permalink
feat: Update DNS toggle logic in Settings.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Jul 31, 2024
1 parent 544d985 commit e5ffc56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
<div class="title-description mg-bottom-xlg">
{{ $t("settings.DNS_description") }}
</div>
<cv-row v-if="are_dns_bound && !running">
<cv-row v-if="are_dns_bound && !dnsEnableField">
<cv-column>
<NsInlineNotification
kind="info"
Expand All @@ -177,7 +177,7 @@
v-model="dnsEnableField"
value="dnsEnableField"
formItem
:disabled="are_dns_bound && !running"
:disabled="are_dns_bound && !dnsEnableField"
ref="dnsEnableField"
>
<template slot="text-left">{{
Expand Down

0 comments on commit e5ffc56

Please sign in to comment.