-
Notifications
You must be signed in to change notification settings - Fork 2
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
Feature/lazy-loading #31
Conversation
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.
@petrKavulok Has it been tested properly? I have a feeling, that some containers was not working properly with lazy loading (not sure if it was resources or roles or some other...)
@@ -38,8 +38,6 @@ function TenantDetailContainer(props) { | |||
const [page, setPage] = useState(1); | |||
const [filter, setFilter] = useState(""); | |||
const limit = 10; | |||
const [username, setUsername] = useState(); |
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.
@petrKavulok Ok, why were those items removed and why it is not in changelog or at least in the description of this PR then? Its very hard to distinguish from reviewers point of view, why this change has been made without any context .
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 removed it because I noticed that this functionality was already taken care of by the <Credentials />
component. I should have made a separate PR for that. Sorry, next time I'll separate it to two PRs
jj, it was. I also remember some of the containers not working, but I have not encountered any funny behaviour while testing |
@@ -38,8 +38,6 @@ function TenantDetailContainer(props) { | |||
const [page, setPage] = useState(1); | |||
const [filter, setFilter] = useState(""); | |||
const limit = 10; | |||
const [username, setUsername] = useState(); |
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.
@petrKavulok PLease add the information about what has been removed and why to the changelog please :)
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.
Looks good
### in this PR
<Credentials />
componentTODO: