Procházet zdrojové kódy

fix label of comparing link

Yuki Takei před 5 roky
rodič
revize
a9ae4b4d76
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      bin/github-actions/list-branches.js

+ 1 - 1
bin/github-actions/list-branches.js

@@ -69,7 +69,7 @@ function getGitHubCommitsUrl(branchName) {
 }
 }
 
 
 function getGitHubComparingLink(branchName) {
 function getGitHubComparingLink(branchName) {
-  const label = `master <- ${branchName}`;
+  const label = `master &lt;- ${branchName}`;
   const link = url.resolve(GITHUB_REPOS_URI, `compare/${branchName}`);
   const link = url.resolve(GITHUB_REPOS_URI, `compare/${branchName}`);
   return `<${link}|${label}>`;
   return `<${link}|${label}>`;
 }
 }