[2.x] Fix delete button visibility in search filters#51100
[2.x] Fix delete button visibility in search filters#51100bbovenzi merged 1 commit intoapache:v2-11-testfrom
Conversation
|
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide (https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
|
|
Can you also fix it for the |
Thank you for reviewing. I've created a new PR to fix the same issue in the Pools list page: [2.x] Fix pools list page's delete button visibility in search filters (#51161) Please let me know if any further changes are needed. |
|
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
Description
This PR fixes a UI bug in the Variable List page where the "Delete" (remove filter) button for search filters was not fully visible. The issue was caused by legacy table cell (
td) settings in the template, which became problematic after upgrading the Flask-AppBuilder package. The button was partially hidden, with only its right border visible, making it difficult for users to remove filters.What was changed:
variable_list.htmlto ensure the remove filter button is always fully visible and accessible in the Variable List filter UI.Related Issues
closes: #50296
Related PRs
How to reproduce
What you think should happen instead
The delete search filter button should be fully visible and easily clickable.
Additional context
Screenshots
Before:

After:

Please review and let me know if further adjustments are needed.