Skip to content

Commit

Permalink
fix: page title, probes order
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKolarik committed Sep 5, 2024
1 parent 8ee2ad3 commit 8c9f09b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineNuxtConfig({
},
app: {
head: {
titleTemplate: '%s GP Dashboard',
titleTemplate: '%s Globalping Dashboard',
htmlAttrs: {
lang: 'en-us',
},
Expand Down
1 change: 1 addition & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@
try {
const result = await $directus.request(readItems('gp_adopted_probes', {
filter: { userId: { _eq: user.id } },
sort: [ 'name' ],
limit: 10,
}));
return result;
Expand Down
1 change: 1 addition & 0 deletions pages/probes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
const [ adoptedProbes, [{ count }], creditsAdditions ] = await Promise.all([
$directus.request(readItems('gp_adopted_probes', {
filter: { userId: { _eq: user.id } },
sort: [ 'name' ],
offset: event?.first || first.value,
limit: itemsPerPage,
})),
Expand Down

0 comments on commit 8c9f09b

Please sign in to comment.