Skip to content

Commit

Permalink
feature: Update wireguard config generator to include block lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Natanael Rodriguez Ramos authored and Natanael Rodriguez Ramos committed Nov 23, 2023
1 parent c89dc5d commit 160e75c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
<label for="dns_standard">Standard</label>
</div>
<div>
<input type="radio" name="dns" id="dns_antitracker" value="antitracker" @change="selectDNS($event)">
<input type="radio" name="dns" id="dns_antitracker" ref="dns_antitracker" value="antitracker" @change="selectDNS($event)">
<label for="dns_antitracker">AntiTracker </label>
<div class="select">
<select v-model="selectedBlockList">
Expand Down Expand Up @@ -291,7 +291,7 @@ export default {
handler: function (after, before) {
if(this.$refs.dns_hardcore.checked){
this.dns = after.Hardcore;
}else{
}else if(this.$refs.dns_antitracker.checked){
this.dns= after.Normal;
}
}
Expand Down

0 comments on commit 160e75c

Please sign in to comment.