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 f979565 commit db0f116Copy full SHA for db0f116
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 attributes with a literal bool false value
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