:zap: Workflow Automation Platform. Orchestrate & Schedule code in any language, run anywhere, 500+ plugins. Alternative to Zapier, Rundeck, Camunda, Airflow...
Implement a functionality to clear all selected filters at once (now we need to remove them one by one).
It can be done using the clearable atribute of el-select component with the custom handler on @clear event, which will empty the current variable value and trigger search with new filter values.
Component in question is kestra/ui/src/components/filter/KestraFilter.vue.
New filters are (for now) only used on Executions page.
Implement a functionality to clear all selected filters at once (now we need to remove them one by one).
It can be done using the
clearable
atribute ofel-select
component with the custom handler on@clear
event, which will empty thecurrent
variable value and trigger search with new filter values.Component in question is
kestra/ui/src/components/filter/KestraFilter.vue
. New filters are (for now) only used onExecutions
page.