Skip to content
Snippets Groups Projects
Commit 4ef9149a authored by Jakob Dieterle's avatar Jakob Dieterle
Browse files

fix changelog component

parent 6765ddf5
Branches 289-fix-change-log-card
Tags
1 merge request!292Resolve "Fix Change Log Card"
Pipeline #321638 passed
......@@ -284,7 +284,7 @@ export function disableAccount (accessToken: string, userPk: string) {
export async function fetchReleases () {
const id = 'j.michal%2Fgrady'
const url = `https://gitlab.gwdg.de/api/v4/projects/${id}/releases`
const url = `https://gitlab.gwdg.de/api/v4/projects/${id}/releases?include_html_description=true`
return (await ax.get(url)).data as GitlabRelease[]
}
......
......@@ -6,7 +6,7 @@
<v-toolbar-title
style="min-width: fit-content;"
>
Change Log
<span class="title">Changelog</span>
</v-toolbar-title>
<v-spacer />
<span style="font-size:16px;">
......@@ -67,6 +67,7 @@ const Changelog = Vue.extend({
try {
this.releases = await api.fetchReleases()
this.version = (await api.fetchConfig()).version
console.log(this.releases)
}
catch (ex) {
throw new Error('Error fetching grady version.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment