forked from FoundKeyGang/FoundKey
リポジトリとフィードバックのURLが設定ファイルから反映されないのを修正
This commit is contained in:
parent
bf7875bfaa
commit
fa7c8cfe5b
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
(this as any).os.getMeta().then(meta => {
|
(this as any).os.getMeta().then(meta => {
|
||||||
if (meta.repositoryUrl) this.repositoryUrl = meta.repositoryUrl;
|
if (meta.maintainer.repository_url) this.repositoryUrl = meta.maintainer.repository_url;
|
||||||
if (meta.feedbackUrl) this.feedbackUrl = meta.feedbackUrl;
|
if (meta.maintainer.feedback_url) this.feedbackUrl = meta.maintainer.feedback_url;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue