Skip to content

Commit

Permalink
Update title name field to fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos committed Sep 18, 2023
1 parent 15855f3 commit 16c54f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vss-extension-dev.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "GHAzDoWidget-DEV",
"version": "0.0.1.71",
"version": "0.0.1.73",
"public": false,
"name": "Advanced Security dashboard Widgets [DEV]",
"description": "[DEV] GitHub Advanced Security for Azure DevOps dashboard widgets",
Expand Down
2 changes: 1 addition & 1 deletion widget_1x1/widget_1x1.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
consoleLog('loaded repoName from widgetSettings_1x1: ' + repoName);

// set the tile
var title = $('h2.title');
var title = $('h2.ghazdo-title');
title.text(`${repoName}`);
alerts = await getAlerts(organization, projectName, repoId);
consoleLog('alerts: ' + JSON.stringify(alerts));
Expand Down
2 changes: 1 addition & 1 deletion widget_2x1/widget_2x1.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
consoleLog('loaded repoName from widgetSettings: ' + repoName);

// set the tile
var title = $('h2.title');
var title = $('h2.ghazdo-title');
title.text(`Security Alerts for ${repoName}`);
alerts = await getAlerts(organization, projectName, repoId);
consoleLog('alerts: ' + JSON.stringify(alerts));
Expand Down

0 comments on commit 16c54f7

Please sign in to comment.