Skip to content

Commit

Permalink
Merge pull request #86 from jason5ng32/dev
Browse files Browse the repository at this point in the history
Bug fixed
  • Loading branch information
jason5ng32 authored Feb 6, 2024
2 parents ca93d65 + fa5a9db commit a9a448b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ipcheck.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
<hr class="dropdown-divider">
</li>
<li v-for="source in sources" :key="source.id">
<a class="dropdown-item" :class="{ active: ipGeoSource === source.id, disabled: !source.enabled }"
<span class="dropdown-item" :class="{ active: ipGeoSource === source.id, disabled: !source.enabled }"
@click="source.enabled ? selectIPGeoSource(source.id) : null" :disabled="!source.enabled"
:aria-disabled="!source.enabled" :aria-label="source.text">
{{ source.text }}
<i class="bi bi-check2-circle" v-if="ipGeoSource === source.id"></i>
</a>
</span>
</li>
</ul>
</div>
Expand Down

0 comments on commit a9a448b

Please sign in to comment.