testilo 33.2.2 → 33.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ const getScoreRow = (componentName, score) => `<tr><th>${componentName}</th><td>
|
|
|
25
25
|
// Gets a row of the issue-score-summary table.
|
|
26
26
|
const getIssueScoreRow = (summary, wcag, score, tools) => {
|
|
27
27
|
const toolList = tools.map(tool => `<code>${tool}</code>`).join(', ');
|
|
28
|
-
return `<tr><th>${summary}</th><td>${wcag}<td>${score}</td><td>${toolList}</td></tr>`;
|
|
28
|
+
return `<tr><th>${summary}</th><td class="center">${wcag}<td class="right">${score}</td><td>${toolList}</td></tr>`;
|
|
29
29
|
};
|
|
30
30
|
// Adds parameters to a query for a digest.
|
|
31
31
|
const populateQuery = (report, query) => {
|