-
Notifications
You must be signed in to change notification settings - Fork 16.1k
fix(theming): Fix visual regressions from theming P4 #33703
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
fix(theming): Fix visual regressions from theming P4 #33703
Conversation
|
Based on your review schedule, I'll hold off on reviewing this PR until it's marked as ready for review. If you'd like me to take a look now, comment
|
…e when running query
|
@EnxDev Processing your ephemeral environment request here. Action: up. More information on how to use or configure ephemeral environments |
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.
I've completed my review and didn't find any issues.
Files scanned
| File Path | Reviewed |
|---|---|
| superset-frontend/src/dashboard/components/DeleteComponentButton.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterConfigurePane.tsx | ✅ |
| superset-frontend/src/components/Datasource/Field.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DraggableFilter.tsx | ✅ |
| superset-frontend/src/components/MessageToasts/Toast.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx | ✅ |
| superset-frontend/src/dashboard/components/gridComponents/Column.jsx | ✅ |
| superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx | ✅ |
| superset-frontend/src/components/Datasource/CollectionTable.tsx | ✅ |
| superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx | ✅ |
| superset-frontend/cypress-base/cypress/support/directories.ts | ✅ |
| superset-frontend/src/SqlLab/components/SqlEditor/index.tsx | ✅ |
| superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx | ✅ |
| superset-frontend/src/components/Datasource/DatasourceEditor.jsx | ✅ |
Explore our documentation to understand the languages and file types we support and the files we ignore.
Check out our docs on how you can make Korbit work best for you and your team.
superset-frontend/src/components/Datasource/DatasourceEditor.jsx
Outdated
Show resolved
Hide resolved
| paddingTop: theme.sizeUnit * 3, | ||
| position: 'sticky', | ||
| bottom: theme.sizeUnit, | ||
| marginBottom: theme.sizeUnit * 3, |
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.
Is this intended?
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.
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.
I thought you were referring to the * 3, Good catch!
...et-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx
Outdated
Show resolved
Hide resolved
|
@msyavuz Processing your ephemeral environment request here. Action: up. More information on how to use or configure ephemeral environments |
|
@msyavuz Ephemeral environment spinning up at http://54.202.174.181:8080. Credentials are 'admin'/'admin'. Please allow several minutes for bootstrapping and startup. |
|
@EnxDev Processing your ephemeral environment request here. Action: up. More information on how to use or configure ephemeral environments |
|
@EnxDev Ephemeral environment spinning up at http://35.167.61.154:8080. Credentials are 'admin'/'admin'. Please allow several minutes for bootstrapping and startup. |
| paddingTop: theme.sizeUnit * 3, | ||
| position: 'sticky', | ||
| bottom: theme.sizeUnit, | ||
| marginBottom: theme.sizeUnit * 3, |
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.
| await userEvent.type(inputCertifiedBy, 'test'); | ||
| await userEvent.type(inputCertDetails, 'test'); | ||
| }); | ||
| }, 60000); // 60 seconds timeout to avoid timeouts |
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.
60 seconds is a bit much, if we decide to increase timeout let's do it in smaller increments
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.
I added a 60-second timeout, exactly like it was done in the test right after the one called "can delete columns".
I believe this is just a temporary fix to avoid blocking the tests. The entire test likely needs to be reviewed; for example, some await statements that have no effect should probably be removed.
mistercrunch
left a comment
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.
MERGE AWAY!
…void invalid selector error


SUMMARY
This pull request makes minor UI tweaks to address regressions caused by the theming project.
The goal is to restore visual consistency and ensure components match the intended design.
No functional logic has been impacted.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before

After

Before

After

Before

After

Before

After

Before

After

Before
https://github.com/user-attachments/assets/6a2de66c-1c01-47ad-b027-2e1f34cba7a3
After
https://github.com/user-attachments/assets/0771ff27-7efe-4da6-92ed-e3e01283d9b1
Before

After

TESTING INSTRUCTIONS
ADDITIONAL INFORMATION