Skip to content

Commit

Permalink
core: frontend: components: NetworkCard: Fix IPv6 identification
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Jul 25, 2023
1 parent e45cf6b commit 7e44036
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
v-for="(ip, i) in network.ips"
:key="i"
class="pa-0 text-h6 text-center"
:style="ip.includes('::') && !show_ipv6 ? 'cursor: pointer; filter:blur(0.5em)' : ''"
:style="ip.includes(':') && !show_ipv6 ? 'cursor: pointer; filter:blur(0.5em)' : ''"
@click="show_ipv6 = true"
>
{{ ip }}
Expand Down

0 comments on commit 7e44036

Please sign in to comment.