1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-16 18:28:51 +01:00

fix: repo item link

This commit is contained in:
Rongjian Zhang 2019-09-11 19:45:34 +08:00
parent 06ea0070f2
commit b610af44a1

View File

@ -124,14 +124,14 @@ class RepoItem extends StatelessWidget {
);
if (inRepoScreen) {
return widget;
} else {
// TODO: text style
return Link(
screenBuilder: (_) =>
RepoScreen(payload['owner']['login'], payload['name']),
child: widget,
);
} else {
return widget;
}
}
}