Unified resources view improvements #34384
Conversation
… skeleton should be shown or not There is no need to set up `setTimeout` 24 times if we can do this once.
| import { Flex, Box } from 'design'; | ||
| import { ShimmerBox } from 'design/ShimmerBox'; | ||
|
|
||
| const DISPLAY_SKELETON_AFTER = 400; // 400 ms |
There was a problem hiding this comment.
We wanted to decrease this, I'll confirm it with Kenny.
There was a problem hiding this comment.
Actually, I will just change it.
|
@rudream added another loading skeleton component for list view and realized that the colors in light mode were off. Can we take his updates to the colors and add them here? |
I think we can keep them in his PR, we use the same |
|
I refactored the loading skeleton a bit, now it expects an |
This PR addresses some minor issues in the

UnifiedResourcesthat were found during the work on integrated search bar in Connect.I also changed the loading cards styling a bit (this was feedback from Kenny)
Before:
After:

While I was on it, I refactored it slightly. There is no need in setting up
setTimeout24 times if we can do this once.