fix: show repo owner at user stars screen

This commit is contained in:
Rongjian Zhang 2019-03-13 22:04:59 +08:00
parent f580d4b96c
commit 0b57a59392
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class _ReposScreenState extends State<ReposScreen> {
title: Text('$login\'s $title'),
onRefresh: () => _queryRepos(),
onLoadMore: (cursor) => _queryRepos(cursor),
itemBuilder: (payload) => RepoItem(payload, showOwner: false),
itemBuilder: (payload) => RepoItem(payload, showOwner: widget.star),
);
}
}