Parcourir la source

Fixes webpack chunk name

main
Eric Amodio il y a 2 ans
Parent
révision
b23e5bd4e6
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/remotes/gitlab.ts

+ 1
- 1
src/git/remotes/gitlab.ts Voir le fichier

@ -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,

Chargement…
Annuler
Enregistrer