Skip to content

Commit

Permalink
Merge pull request #3355 from threefoldtech/development_my_nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
maayarosama authored Sep 3, 2024
2 parents 18aa0a0 + 7e6727f commit f4a6e64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/playground/src/views/nodes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<TfFilter query-route="ipv6" v-model="filters.ipv6">
<v-switch color="primary" inset label="IPv6" v-model="filters.ipv6" density="compact" hide-details />
</TfFilter>
<TfFilter query-route="mine" v-model="filters.mine" v-if="profileManager.profile">
<v-switch color="primary" inset label="Mine" v-model="filters.mine" density="compact" hide-details />
<TfFilter query-route="myNodes" v-model="filters.myNodes" v-if="profileManager.profile">
<v-switch color="primary" inset label="My Nodes" v-model="filters.myNodes" density="compact" hide-details />
</TfFilter>

<VTooltip
Expand Down Expand Up @@ -537,7 +537,7 @@ export default {
numGpu: "",
rentable: false,
ipv6: false,
mine: false,
myNodes: false,
});
const oldNodeStatus = ref();
watch(
Expand Down Expand Up @@ -597,7 +597,7 @@ export default {
numGpu: +filters.value.numGpu || undefined,
rentable: filters.value.rentable ? filters.value.rentable : undefined,
hasIPv6: filters.value.ipv6 ? filters.value.ipv6 : undefined,
rentedBy: filters.value.mine && profileManager.profile ? profileManager.profile.twinId : undefined,
rentedBy: filters.value.myNodes && profileManager.profile ? profileManager.profile.twinId : undefined,
},
{ loadFarm: true },
);
Expand Down

0 comments on commit f4a6e64

Please sign in to comment.