-
Notifications
You must be signed in to change notification settings - Fork 16
feat: refactor output box #93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1. move toggle button to outputbox 2. fix dashboard loading
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! The two things in this PR do not seem to be related. I would suggest handling only issue #71 in this PR and leaving the second "dashboard loading fix" to another PR. Also, what was the dashboard loading issue?
ui/src/pages/repos/index.tsx
Outdated
<Repos | ||
callback={(arg) => { | ||
if (arg) { | ||
setError(arg); | ||
} | ||
}} | ||
onLoading={(value) => { | ||
setLoading(value); | ||
}} | ||
/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the issue here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is no issue, i just find that there are two loading hint. so i fixed it in the same time
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, let’s remove this, because this adds extra complexity. We’ll redirect to login page anyway, so there won’t be warnings. #77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i remove error part, remain the loading part
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No worry. I'm taking over this part. But I want to confirm if it redirects the login page immediately or gives any hints and then jump to the login page?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
normally, it needs show hint firstly and then redirects
And your image link seems to be broken? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
<Repos | ||
onLoading={(value)=>{ | ||
setLoading(value) | ||
}}/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI #106
issue 74