Sfoglia il codice sorgente

Fixes webpack chunk name

main
Eric Amodio 2 anni fa
parent
commit
b23e5bd4e6
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/git/remotes/gitlab.ts

+ 1
- 1
src/git/remotes/gitlab.ts Vedi File

@ -381,7 +381,7 @@ export class GitLabRemote extends RichRemoteProvider {
const [owner, repo] = this.splitPath();
const { include, ...opts } = options ?? {};
const GitLabMergeRequest = (await import(/* webpackChunkName: "gitlabl" */ '../../plus/gitlab/models'))
const GitLabMergeRequest = (await import(/* webpackChunkName: "gitlab" */ '../../plus/gitlab/models'))
.GitLabMergeRequest;
return (await Container.instance.gitlab)?.getPullRequestForBranch(this, accessToken, owner, repo, branch, {
...opts,

Caricamento…
Annulla
Salva