Skip to content

Commit

Permalink
fix: spacing in between tr
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilmhdh committed May 3, 2024
1 parent 95e8524 commit 1ff4c56
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33901,8 +33901,7 @@ const getTemplate = (userID, imageSize, name, avatarUrl) => {
<br />
<sub><b>${name ? name : userID}</b></sub>
</a>
</td>
`;
</td>`;
};

/**
Expand Down Expand Up @@ -33985,7 +33984,7 @@ const templateBuilder = async (contributors, prevContributors, type) => {
contributors_content += getTemplate(login, imageSize, login, avatar_url);
}
}
contributors_content += '\t\t</tr>\n';
contributors_content += '\n\t\t</tr>\n';
}

contributors_content += `\t<tbody>\n</table>\n<!-- readme:${type}-end -->`;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions src/utils/templateBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ export const getTemplate = (userID, imageSize, name, avatarUrl) => {
<br />
<sub><b>${name ? name : userID}</b></sub>
</a>
</td>
`;
</td>`;
};

/**
Expand Down Expand Up @@ -96,7 +95,7 @@ const templateBuilder = async (contributors, prevContributors, type) => {
contributors_content += getTemplate(login, imageSize, login, avatar_url);
}
}
contributors_content += '\t\t</tr>\n';
contributors_content += '\n\t\t</tr>\n';
}

contributors_content += `\t<tbody>\n</table>\n<!-- readme:${type}-end -->`;
Expand Down

0 comments on commit 1ff4c56

Please sign in to comment.