pierrejeambrun commented on code in PR #44817:
URL: https://github.com/apache/airflow/pull/44817#discussion_r1878402209
##########
airflow/ui/src/pages/Variables/Variables.tsx:
##########
@@ -64,22 +77,49 @@ export const Variables = () => {
limit: pagination.pageSize,
offset: pagination.pageIndex * pagination.pageSize,
orderBy,
+ variableKeyPattern: Boolean(variableKeyPattern)
+ ? `%${variableKeyPattern}%`
Review Comment:
```suggestion
? `${variableKeyPattern}`
```
Wildcard is already handled in the backend. I don't think we need that in
the front-end, we can remove it, same for `DagList` i think both should be
removed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]