Skip to content

Commit

Permalink
Merge pull request #87 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 a9a448b + c74727e commit 62b3069
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/ipcheck.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<hr class="dropdown-divider">
</li>
<li v-for="source in sources" :key="source.id">
<span class="dropdown-item" :class="{ active: ipGeoSource === source.id, disabled: !source.enabled }"
<span class="dropdown-item jn-select" :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 }}
Expand Down Expand Up @@ -738,4 +738,9 @@ export default {
}
</script>

<style scoped></style>
<style scoped>
.jn-select{
cursor: pointer;
user-select: none;
}
</style>

0 comments on commit 62b3069

Please sign in to comment.