AI search suggestions not working on PortalIssue Typing a word in the Portal search does not display any suggestions when AI search is enabled.ReleaseAllCauseThe configuration might not be correct (all fields are populated as needed with valid values). Review Auto-complete suggestions in AI Search applications to confirm this. If the configuration is correct, another reason for the behavior to occur is the typeahead search box passed in disableAutocomplete as true due to which no suggestions are displayed.ResolutionOpen the search widget Add the below code and comment line 13 in the Server Script if (aisEnabled){var searchWidgetOptions = {disable_all_suggestions: false};data.typeAheadSearch = $sp.getWidget('typeahead-search', searchWidgetOptions);} Save