Skip to content

Commit

Permalink
Updates filter keyword for workflow bookmarks
Browse files Browse the repository at this point in the history
Fix the filter keyword from "#favorites" to "is:bookmarked"
  • Loading branch information
itisAliRH authored and dannon committed Dec 3, 2024
1 parent 6640b28 commit 160d871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Panels/WorkflowPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function refresh() {
watchImmediate(
() => filterText.value,
(newFilterText) => {
showFavorites.value = newFilterText.includes("#favorites");
showFavorites.value = newFilterText.includes("is:bookmarked");
resetWorkflows();
fetchKey = filterText.value;
load();
Expand Down

0 comments on commit 160d871

Please sign in to comment.