🤖 Merge PR #61437 chore(fix): correct padding length by @MrGriefs

This commit is contained in:
Hagen Hyena
2022-07-25 21:23:09 +01:00
committed by GitHub
parent acb499e827
commit 98f7862070

View File

@@ -67,7 +67,7 @@ function getEntry(pkg, maxPathLen) {
return undefined;
}
const path = `${pkg.subDirectoryPath}/`.padEnd(maxPathLen);
const path = `${pkg.subDirectoryPath}/`.padEnd(maxPathLen + 1);
return `/types/${path} ${users.map(u => `@${u}`).join(' ')}`;
}