[MM-62133] Activate crossteam search by default (#30348)

* activate cross team search by default

* fix e2e test

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Julien Tant
2025-03-12 10:24:39 -07:00
коммит произвёл GitHub
родитель 52f37f8514
Коммит 9f1ec59fa0
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@@ -70,6 +70,12 @@ describe('Verify Accessibility keyboard usability across different regions in th
cy.get('body').type('{leftarrow}').wait(100);
cy.get('#messagesTab').should('have.class', 'a11y--active a11y--focused');
// # move focus to the team selector
cy.focused().tab();
// * Ensures the focus item has test-id of searchTeamsSelectorMenuButton
cy.get('#searchTeamsSelectorMenuButton').should('have.class', 'a11y--active a11y--focused');
// # move focus to search results items
cy.focused().tab();

Просмотреть файл

@@ -82,7 +82,7 @@ func (f *FeatureFlags) SetDefaults() {
f.WebSocketEventScope = true
f.NotificationMonitoring = true
f.ExperimentalAuditSettingsSystemConsoleUI = false
f.ExperimentalCrossTeamSearch = false
f.ExperimentalCrossTeamSearch = true
f.CustomProfileAttributes = false
}