Skip to content

Commit

Permalink
Merge branch 'daniel/update-notebook-layout-again' of github.com:biom…
Browse files Browse the repository at this point in the history
…od2023/biomod2023 into ci-testing
  • Loading branch information
daniel-panhead committed Oct 19, 2023
2 parents 4e59670 + 8b058de commit 1ecb7df
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 14 deletions.
19 changes: 14 additions & 5 deletions src/components/navbar/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ const tree: Tree[] = [
name: 'Lab Validation',
children: [
{
name: 'Enzyme Activity Assays',
url: '/lab-validation/enzyme-activity-assays'
name: 'Dnase I',
url: '/lab-validation/dnase-i'
},
{
name: 'Liposome Formation',
Expand All @@ -55,12 +55,21 @@ const tree: Tree[] = [
url: '/lab-validation/octahedron-formation'
},
{
name: 'Octahedron Liposome Formation',
name: 'Thiolation and Conjugation',
url: '/lab-validation/thiolation-and-conjugation'
}
]
},
{
name: 'Future Directions',
children: [
{
name: 'Docking of Alginate Lyase and Alpha-Amylase',
url: '#'
},
{
name: 'Thiolation and Conjugation',
url: '/lab-validation/enzyme-conjugation'
name: 'Liposome Formation Using Octahedron',
url: '#'
}
]
}
Expand Down
14 changes: 7 additions & 7 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const HomeView = () => import('@/views/HomeView.vue')
const IdeasView = () => import('@/views/IdeasView.vue')
const TeamView = () => import('@/views/TeamView.vue')
const ELSIView = () => import('@/views/ELSIView.vue')
const GroupAView = () => import('@/views/enzymosome/GroupAView.vue')
const GroupCView = () => import('@/views/enzymosome/GroupCView.vue')
const OctadedronFormation = () => import('@/views/Octahedron/OctahedronFormation.vue')
const GroupAView = () => import('@/views/lab-validation/GroupAView.vue')
const GroupCView = () => import('@/views/lab-validation/GroupCView.vue')
const OctadedronFormation = () => import('@/views/lab-validation/OctahedronFormation.vue')

const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
Expand Down Expand Up @@ -34,13 +34,13 @@ const router = createRouter({
component: TeamView
},
{
path: '/lab-validation/enzyme-activity-assays',
name: 'enzyme-activity-assays',
path: '/lab-validation/dnase-i',
name: 'dnase-i',
component: GroupAView
},
{
path: '/lab-validation/enzyme-conjugation',
name: 'enzyme-conjugation',
path: '/lab-validation/thiolation-and-conjugation',
name: 'thiolation-and-conjugation',
component: GroupCView
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const tableData = {

<template>
<Notebook>
<template #title>Enzyme Activity Assays</template>
<template #title>Dnase I</template>
<template #body>
<SingleColumn>
<template #title> Intro </template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const sectionTitleStyle = 'text-subtitle-sm lg:text-subtitle text-white mb-4'

<template>
<Notebook>
<template #title> Enzyme Conjunction </template>
<template #title> Thiolation and Conjunction </template>
<template #body>
<SingleColumn>
<template #title> Intro </template>
Expand Down

0 comments on commit 1ecb7df

Please sign in to comment.