Skip to content

Commit

Permalink
fixed url
Browse files Browse the repository at this point in the history
  • Loading branch information
JTaeger committed Mar 11, 2024
1 parent ba0ae9b commit 1a40ed9
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions node_modules/.vite/deps/_metadata.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/Layout/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div>
<div class="nav__title">Billy Gene</div>
<div class="nav__subtitle">
Subtitle
Webapp for articlesearch by genes
</div>
</div>
<div class="nav__logo">
Expand Down
4 changes: 2 additions & 2 deletions src/components/Layout/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<section class="about">
<h2>About</h2>
<p>
...
Webapp to search for mentioned genes in Articles
</p>

<h2>How-to</h2>
<p>
...
Enter a list of genes ',' separated and a list of MeSH-terms that should be included or omitted.
</p>
</section>

Expand Down
2 changes: 1 addition & 1 deletion src/lib/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// app wide configurations

const config = {
apiBaseUrl: "https://api-billygene.dzd-ev.org/",
apiBaseUrl: "https://api-billygene.apps.dzd-ev.org/",
};

export default config;
3 changes: 1 addition & 2 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { createApp } from 'vue'

import App from './App.vue'

import BaseCard from './components/UI/BaseCard.vue'
import BaseButton from './components/UI/BaseButton.vue'
import BaseDialog from './components/UI/BaseDialog.vue'
import BaseDialogNoButton from './components/UI/BaseDialogNoButton.vue'
import JsonCSV from 'vue-json-csv'


const app = createApp(App)

app.component('base-card', BaseCard)
Expand Down

0 comments on commit 1a40ed9

Please sign in to comment.