Skip to content

Commit

Permalink
fix(server): spot tags are only parsed for first test
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianth committed Feb 25, 2022
1 parent 49b6f4e commit 27a8f2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/src/public/js/ng/session-ctrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ ngApp.controller('SessionCtrl', ['$scope', '$http', '$window', 'helpers', '$time
$scope.vm.isLoadingSessionInfo = false;

$timeout(function () {
formatSpotTags(document.querySelector('#results table.actions'));
document.querySelectorAll('#results table.actions').forEach(e => {
formatSpotTags(e);
});
});
});
}
Expand Down

0 comments on commit 27a8f2e

Please sign in to comment.