Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,13 @@ export const RunsPerDataPassOverviewPage = ({
),
visible: true,
format: (_, { runNumber }) => {
const gaqDisplay = h('button.btn.btn-primary.w-100', 'GAQ');
const gaqDisplay = h('button.btn.btn-primary.w-100', [
'GAQ',
h(
'.d-inline-block.va-t-bottom',
tooltip(h('.f7', iconWarning()), 'GAQ Summary is disabled, please click to view GAQ flags'),
),
]);
return frontLink(gaqDisplay, 'gaq-flags', { dataPassId, runNumber });
},
filter: ({ filteringModel }) => numericalComparisonFilter(
Expand Down
2 changes: 2 additions & 0 deletions test/public/runs/runsPerDataPass.overview.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ module.exports = () => {

await expectInnerText(page, '#row106-globalAggregatedQuality', 'GAQ');

expect(await getPopoverInnerText(await page.waitForSelector('#row106-globalAggregatedQuality .popover-trigger')))
.to.be.equal('GAQ Summary is disabled, please click to view GAQ flags');
});

it('should ignore QC flags created by services in QC summaries of AOT and MUON ', async () => {
Expand Down
Loading