RestoreDashboards: Add event tracking (#90321)

This commit is contained in:
Laura Fernández
2024-07-15 12:00:29 +02:00
committed by GitHub
parent 73336362a8
commit cd6f018c95
7 changed files with 41 additions and 3 deletions
+1 -2
View File
@@ -98,7 +98,6 @@ function getColumn(lines, columnIndex) {
return set;
}
/**
* Generates a markdown section detailing the affected plugins based on the provided data.
*
@@ -124,7 +123,7 @@ function printAffectedPluginsSection(data) {
const affectedPlugins = getColumn(rows, pluginsColumnIndex);
markdown += `<h3>Number of affected plugins: ${affectedPlugins.size}</h3>`;
markdown += "<p>To check the plugins affected by each import, click on the links below.</p>";
markdown += '<p>To check the plugins affected by each import, click on the links below.</p>';
const propertiesColumnIndex = 1;
const affectingProperties = getColumn(rows, propertiesColumnIndex);