Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ecbc81 commit 706a754Copy full SHA for 706a754
packages/gatsby/cache-dir/loading-indicator/indicator.js
@@ -42,7 +42,8 @@ export function Indicator({ visible = true }) {
42
<Style />
43
<div
44
data-gatsby-loading-indicator="root"
45
- data-gatsby-loading-indicator-visible={visible}
+ // preact doesn't render data attributes with a literal bool false value to dom
46
+ data-gatsby-loading-indicator-visible={visible.toString()}
47
aria-live="assertive"
48
>
49
<div data-gatsby-loading-indicator="spinner" aria-hidden="true">
0 commit comments