-
Notifications
You must be signed in to change notification settings - Fork 159
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
[full-ci] fix: render loading state before loading starts #7325
Conversation
c93f488
to
4d0aa06
Compare
Results for oC10Files5 https://drone.owncloud.com/owncloud/web/27070/21/1 |
89f74f4
to
31ffb91
Compare
If the item is missing there's a warning in the browser console about item not matching the required format.
31ffb91
to
add7d7c
Compare
add7d7c
to
adea522
Compare
@@ -21,7 +21,7 @@ const propsData = { | |||
active: false, | |||
target: exampleNavItem.route.path, | |||
icon: exampleNavItem.icon, | |||
index: 5, | |||
index: '5', |
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.
how is this related? 🤔
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.
It's not. It just printed a warning to the console when running unit tests, so I fixed it. ;-)
Kudos, SonarCloud Quality Gate passed! |
Description
Noticed that the
Personal
view showed theResource not found
component for a brief moment before the resource loader task was started. This is due to the task API not announcing itself asisRunning=true
when there is no task instance, yet. Fixed in all views by adding a check for the absence of a loader task instance (in addition to theisRunning
check).Types of changes
Checklist: