Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • j.michal/grady
1 result
Show changes
Commits on Source (8)
......@@ -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.')
......