Skip to content

Commit

Permalink
feat: change title
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Oct 18, 2023
1 parent ad59e9b commit 7b67f9e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/FooterDefault.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ onMounted(() => {
<v-footer app>
<small>
Developed by BIH CUBI. For support and feedback, please contact [email protected].
REEV: Explanation and Evaluation of Variants {{ miscStore?.appVersion }}
REEV Explains and Evaluates Variants {{ miscStore?.appVersion }}
</small>
</v-footer>
</template>
3 changes: 1 addition & 2 deletions frontend/src/components/HeaderDefault.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ import UserProfileButton from '@/components/UserProfileButton.vue'
alt="logo"
width="50"
/>
REEV: Explanation and Evaluation of Variants
REEV Explains and Evaluates Variants
</router-link>
<strong style="font-size: 130%; color: indigo">EXPERIMENTAL</strong>
</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items class="topbar-links">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/__tests__/FooterDefault.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe.concurrent('FooterDefault.vue', () => {
)
const footer = wrapper.find('footer')
expect(footer.exists()).toBe(true)
expect(footer.text()).toContain('REEV: Explanation and Evaluation of Variants')
expect(footer.text()).toContain('REEV Explains and Evaluates Variants')
expect(footer.text()).toContain('v0.0.0')
})
})
2 changes: 1 addition & 1 deletion frontend/src/components/__tests__/HeaderDefault.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe.concurrent('HeaderDefault.vue', () => {
const logo = wrapper.find('#logo')
const title = wrapper.find('a[href="/"]')
expect(logo.exists()).toBe(true)
expect(title.text()).toBe('REEV: Explanation and Evaluation of Variants')
expect(title.text()).toBe('REEV Explains and Evaluates Variants')
})

it('renders the navigation links', async () => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Acknowledgements = {
<v-col cols="12">
<h2 class="title">About REEV</h2>
<p class="description">
REEV (REEV: Explanation and Evaluation of Variants) is a web-based tool designed to assist
REEV (REEV Explains and Evaluates Variants) is a web-based tool designed to assist
clinicians and researchers in the field of rare disease genetics. This tool empowers users
by providing comprehensive and aggregated information on genomic variants.
</p>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/__tests__/AboutView.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe.concurrent('AboutView', async () => {

const mainContent = wrapper.find('.about-view')
expect(mainContent.exists()).toBe(true)
expect(mainContent.html()).toMatch('REEV: Explanation and Evaluation of Variants')
expect(mainContent.html()).toMatch('REEV Explains and Evaluates Variants')
// Acknowledgements
expect(mainContent.html()).toMatch('ClinVar is a freely accessible, public archive')
expect(mainContent.html()).toMatch('Coral emoji from OpenMoji')
Expand Down

0 comments on commit 7b67f9e

Please sign in to comment.