Skip to content

Commit fd0243e

Browse files
Reduce loading indicator delay (#3467)
The loading indicator currently waits for 0.5 seconds before displaying to prevent a flicker if data loads relatively quickly. The current half-second wait makes it look slow in my opinion, and I think a 0.2 second wait improves the experience while still addressing the flicker issue.
1 parent 7b70c14 commit fd0243e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/js/vue/components/shared/LoadingIndicator.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default {
3030
// Prevent a flicker if the page loads quickly
3131
setTimeout(() => {
3232
this.initialDelayComplete = true;
33-
}, 500);
33+
}, 200);
3434
},
3535
};
3636
</script>

0 commit comments

Comments
 (0)