Skip to content

Commit

Permalink
Merge pull request #747 from threefoldtech/development_playground_dep…
Browse files Browse the repository at this point in the history
…loymentsTable_removeNone

playground: deployments table - replace none with dash
  • Loading branch information
0oM4R authored Jul 3, 2023
2 parents 84a0ba7 + f7e9d0d commit ed64c77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/playground/src/components/vm_deployment_table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
</template>

<template #[`item.ipv4`]="{ item }">
{{ item.value[0].publicIP?.ip?.split("/")?.[0] || item.value[0].publicIP?.ip || "None" }}
{{ item.value[0].publicIP?.ip?.split("/")?.[0] || item.value[0].publicIP?.ip || "-" }}
</template>

<template #[`item.ipv6`]="{ item }">
{{ item.value[0].publicIP?.ip6 || "None" }}
{{ item.value[0].publicIP?.ip6 || "-" }}
</template>

<template #[`item.planetary`]="{ item }">
{{ item.value[0].planetary || "None" }}
{{ item.value[0].planetary || "-" }}
</template>

<template #[`item.flist`]="{ item }">
Expand Down

0 comments on commit ed64c77

Please sign in to comment.