Skip to content

Commit

Permalink
Merge pull request #3532 from threefoldtech/development_domains
Browse files Browse the repository at this point in the history
Fix the Domains page view on the before-login view
  • Loading branch information
samaradel authored Oct 20, 2024
2 parents d1f7304 + cc17bf5 commit d757d29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default {
size: window.env.PAGE_SIZE,
page: Math.max(1, pagination.value.page),
farmId: enableCustomDomain.value ? props.farm?.farmId : undefined,
availableFor: gridStore.client.twinId,
availableFor: gridStore.client?.twinId,
}));
const selectedDomain = ref<NodeInfo | null>(null);
const loadDomains = () => domainsTask.value.run(gridStore, filters.value);
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ function createDeployRoutes(): RouteRecordRaw[] {
{
path: DashboardRoutes.Deploy.Domains,
component: () => import("@/views/domains_view.vue"),
meta: { title: "Domains", publicPath: true },
meta: { title: "Domains" },
},
{
path: DashboardRoutes.Deploy.NodeFinder,
Expand Down

0 comments on commit d757d29

Please sign in to comment.