-
Notifications
You must be signed in to change notification settings - Fork 13.8k
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
feat(ui): Adding manifest prefix config #19141
feat(ui): Adding manifest prefix config #19141
Conversation
for f in filtered_files: | ||
loaded_chunks.add(f) |
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.
No need to do this (specially if CI is green) but this can be simplified:
for f in filtered_files: | |
loaded_chunks.add(f) | |
loaded_chunks.update(filtered_files) |
Codecov Report
@@ Coverage Diff @@
## master #19141 +/- ##
==========================================
- Coverage 66.54% 66.40% -0.15%
==========================================
Files 1646 1646
Lines 63630 63633 +3
Branches 6475 6475
==========================================
- Hits 42343 42254 -89
- Misses 19607 19699 +92
Partials 1680 1680
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
…prefix # Conflicts: # superset/utils/async_query_manager.py
…prefix # Conflicts: # superset-frontend/src/components/TimezoneSelector/TimezoneSelector.test.tsx
* Adding manifest prefix config * Fixing broken tests * Fixing import * Adding prefix for remaining assets * Changing static prefix strategy * Fixing DST test * Fixing up formatting * Fixing up async_query_manager.py types (cherry picked from commit 4b34817)
🏷️ preset:2022.11 |
* Adding manifest prefix config * Fixing broken tests * Fixing import * Adding prefix for remaining assets * Changing static prefix strategy * Fixing DST test * Fixing up formatting * Fixing up async_query_manager.py types
SUMMARY
STATIC_ASSETS_PREFIX
which allows for a custom URL prefix to be added to assets included in the app during manifest processingsuperset.typing
->superset.superset_typing
in order to avoid circular import issues with some python variants/IDEs