Skip to content

Commit

Permalink
Fix #15438: Update filters and destination for 'Conversation' source …
Browse files Browse the repository at this point in the history
…in notification alert (#15443)

* Add 'Mentions' enum for subscriptionCategory

* fix the user list selection field not showing for 'Mentioned Users' filter

* update the cypress for new changes

* fix teams not showing in the mention suggestions
  • Loading branch information
aniketkatkar97 authored Mar 4, 2024
1 parent 7b5f36b commit 110e7a4
Show file tree
Hide file tree
Showing 8 changed files with 838 additions and 685 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
"Admins",
"Assignees",
"Owners",
"Mentions",
"Followers",
"External"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ export const addEventTypeFilter = (
}
};

export const addUpdaterNameFilter = (
export const addFilterWithUsersListInput = (
filterTestId,
filterNumber,
updaterName,
exclude = false
Expand All @@ -136,9 +137,7 @@ export const addUpdaterNameFilter = (
cy.get(`[data-testid="filter-select-${filterNumber}"]`).click({
waitForAnimations: true,
});
cy.get('[data-testid="Updater Name-filter-option"]')
.filter(':visible')
.click();
cy.get(`[data-testid="${filterTestId}"]`).filter(':visible').click();

// Search and select user
interceptURL('GET', `/api/v1/search/query?q=*`, 'getSearchResult');
Expand Down
Loading

0 comments on commit 110e7a4

Please sign in to comment.