Browse Source

SONAR-21482 Fix misuse of "more" param for /api/components/suggestions API call

tags/10.4.0.87286
David Cho-Lerat 3 months ago
parent
commit
686286be12

+ 1
- 1
server/sonar-web/src/main/js/apps/account/notifications/ProjectModal.tsx View File

@@ -137,7 +137,7 @@ export default class ProjectModal extends React.PureComponent<Props, State> {

this.setState({ loading: true, query, selectedProject: undefined });

getSuggestions(query, undefined, ComponentQualifier.Project).then(
getSuggestions(query).then(
(r) => {
if (this.mounted) {
let suggestions = undefined;

Loading…
Cancel
Save