Commit b0488d52 authored by Peter Wischer's avatar Peter Wischer 🦀
Browse files

fix: Merge request detail doesn't show for a large MR

parent 26780331
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -275,7 +275,7 @@ export class GitLabNewService {
    const options: GetDiscussionsQueryOptions = {
      projectPath,
      iid: String(issuable.iid),
      endCursor,
      afterCursor: endCursor,
    };
    const result = await this.client.request<GetDiscussionsQueryResult>(query, options);
    assert(result.project, `Project ${projectPath} was not found.`);
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ export const getIssueDiscussionsQuery = gql`
export interface GetDiscussionsQueryOptions {
  projectPath: string;
  iid: string;
  endCursor?: string;
  afterCursor?: string;
}

interface GqlGenericDiscussion<T extends GqlNote> {