瀏覽代碼

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

tags/10.4.0.87286
David Cho-Lerat 4 月之前
父節點
當前提交
686286be12
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      server/sonar-web/src/main/js/apps/account/notifications/ProjectModal.tsx

+ 1
- 1
server/sonar-web/src/main/js/apps/account/notifications/ProjectModal.tsx 查看文件

@@ -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…
取消
儲存