Skip to content
This repository was archived by the owner on Oct 6, 2022. It is now read-only.

Commit

Permalink
Fix plugin name in table
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcfe committed Feb 15, 2018
1 parent aeeaaeb commit 1cb1d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const landing = {
this.buildNo = response.data.id;
this.plugins = response.data.artifacts.map(artifact => {
return {
name: `EssentialsX ${artifact.displayPath.match(/EssentialsX([A-Za-z]*)/)}`,
name: `EssentialsX ${artifact.displayPath.match(/EssentialsX([A-Za-z]*)/)[1]}`,
main: `${mainCI}lastSuccessfulBuild/artifact/${artifact.relativePath}`,
mirror: `${mirrorCI}lastSuccessfulBuild/artifact/${artifact.relativePath}`,
};
Expand Down

0 comments on commit 1cb1d10

Please sign in to comment.