GitHub user dosubot[bot] added a comment to the discussion: loading gif
<!-- Answer --> The loading GIF in Superset is **not** in `superset-frontend/src/assets/images/` — it's located in the `superset-ui-core` package: **`superset-frontend/packages/superset-ui-core/src/components/assets/images/loading.gif`** [[1]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/packages/superset-ui-core/src/components/assets/images/index.ts) This is the actual GIF file you'd want to replace with your own. The `Loading` component that renders it is at `superset-frontend/packages/superset-ui-core/src/components/Loading/index.tsx` [[2]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/packages/superset-ui-core/src/components/Loading/index.tsx). It also accepts a custom `image` prop, so depending on your use case you could either: 1. **Replace the file** — swap out `loading.gif` at the path above with your own GIF (keeping the same filename), or 2. **Use the `image` prop** — pass your custom GIF to specific `<Loading image={yourGif} />` instances if you only want to change it in certain places [[3]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/packages/superset-ui-core/src/components/Loading/types.ts#L25-L29). Option 1 is the simplest if you want a global change across the entire application. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=reply-with-mention&utm_term=apache%2Fsuperset).* --- Docs are dead. Just use [Dosu](https://dosu.dev?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-tagline&utm_term=apache%2Fsuperset). [](https://app.dosu.dev/response-feedback?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-feedback&utm_term=apache%2Fsuperset&message_id=97ad30c1-1a39-4ce0-a0f6-bc493e15ed5d) [](https://github.dosu.com/apache/superset?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-ask-repo&utm_term=apache%2Fsuperset) [](https://app.dosu.dev/signup?referrer=openSource&source=github-footer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-share-team&utm_term=apache%2Fsuperset) GitHub link: https://github.com/apache/superset/discussions/40705#discussioncomment-17162962 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
