Philip H.
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/www/js/app.js
|
|
@ -288,8 +288,8 @@ new Vue({ |
|
|
|
Promise.resolve().then(async () => { |
|
|
|
const currentRelease = await this.api.getRelease(); |
|
|
|
const latestRelease = await fetch('https://wg-easy.github.io/wg-easy/changelog.json') |
|
|
|
.then(res => res.json()) |
|
|
|
.then(releases => { |
|
|
|
.then((res) => res.json()) |
|
|
|
.then((releases) => { |
|
|
|
const releasesArray = Object.entries(releases).map(([version, changelog]) => ({ |
|
|
|
version: parseInt(version, 10), |
|
|
|
changelog, |
|
|
|