Skip to content

Commit

Permalink
web/satellite/vuetify-poc: update "Learn More" links in page subtitles
Browse files Browse the repository at this point in the history
This change updates the "Learn More" links in the Buckets page,
the Team page, and the project dashboard.

Resolves #6293

Change-Id: I2d9c0ca9b8bbd2991869648d231a8069868efdc0
  • Loading branch information
jewharton authored and Storj Robot committed Sep 21, 2023
1 parent 123309c commit 15c0c67
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion web/satellite/vuetify-poc/src/views/Buckets.vue
Expand Up @@ -4,7 +4,10 @@
<template>
<v-container>
<PageTitleComponent title="Buckets" />
<PageSubtitleComponent subtitle="Buckets are storage containers for your data." link="https://docs.storj.io/dcs/buckets" />
<PageSubtitleComponent
subtitle="Buckets are storage containers for your data."
link="https://docs.storj.io/learn/concepts/key-architecture-constructs#bucket"
/>

<v-row class="mt-2 mb-4">
<v-col>
Expand Down
5 changes: 4 additions & 1 deletion web/satellite/vuetify-poc/src/views/Dashboard.vue
Expand Up @@ -4,7 +4,10 @@
<template>
<v-container>
<PageTitleComponent title="Project Overview" />
<PageSubtitleComponent :subtitle="`Your ${limits.objectCount.toLocaleString()} files are stored in ${limits.segmentCount.toLocaleString()} segments around the world.`" />
<PageSubtitleComponent
:subtitle="`Your ${limits.objectCount.toLocaleString()} files are stored in ${limits.segmentCount.toLocaleString()} segments around the world.`"
link="https://docs.storj.io/dcs/pricing#per-segment-fee"
/>

<v-row class="d-flex align-center justify-center mt-2">
<v-col cols="12" md="6">
Expand Down
5 changes: 4 additions & 1 deletion web/satellite/vuetify-poc/src/views/Team.vue
Expand Up @@ -4,7 +4,10 @@
<template>
<v-container>
<PageTitleComponent title="Team" />
<PageSubtitleComponent subtitle="Invite people and manage the team of this project." link="https://docs.storj.io/dcs/users" />
<PageSubtitleComponent
subtitle="Invite people and manage the team of this project."
link="https://docs.storj.io/support/users"
/>

<v-col>
<v-row class="mt-2 mb-4">
Expand Down

0 comments on commit 15c0c67

Please sign in to comment.