Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit e0bc5fc

Browse files
committed
fix loading fake "block" && model defined fix
1 parent 8640b7f commit e0bc5fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

containers/UniversePanel/styles/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const LoadingIcon = styled(loadingIcon)`
2727
width: 30px;
2828
height: 30px;
2929
margin-top: 20px;
30-
animation: ${rotate360} 2s linear;
30+
animation: ${rotate360} 2s linear infinite;
3131
`
3232

3333
export const AddOn = styled.div`

stores/GithubEampleStore/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const RepoOwner = t.model('RepoOwner', {
1919

2020
const Repo = t.model('Repo', {
2121
id: t.number,
22-
description: t.string,
22+
description: t.maybe(t.string),
2323
language: t.maybe(t.string), // language maybe null, like awesome-react
2424
stargazers_count: t.number,
2525
name: t.string,

0 commit comments

Comments
 (0)