Skip to content

Commit

Permalink
Fix: トップでのリポジトリの名前表示がうまくいっていないのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
S--Minecraft committed Oct 28, 2017
1 parent 494e520 commit 52a5210
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/gui/js/index.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ Vue.component("repo",
methods:
getInfo: ->
try
{name, maintainer} = plistInfo.get(type: @repotype, name: @name)
{name, maintainer} = await plistInfo.get(type: @repotype, name: @name)
@hasinfo = true
@infoname = obj.name
@infomaintainer = obj.maintainer
@infoname = name
@infomaintainer = maintainer
catch
@hasinfo = false
return
Expand Down
2 changes: 1 addition & 1 deletion src/gui/js/repo.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ r = new Vue(
@infoname = name
@infoversion = version
@infomaintainer = maintainer
catch err
catch
@hasinfo = false
return
getChangelog: ->
Expand Down

0 comments on commit 52a5210

Please sign in to comment.