We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8657e8 commit bc4c76eCopy full SHA for bc4c76e
1 file changed
src/frontend/src/Components/shared/header/Header.js
@@ -113,7 +113,7 @@ export default function Header({ isMaintenance }) {
113
}
114
115
return cmsContext.readAdvisories.includes(
116
- advisory.id.toString() + '-' + advisory.last_notified_at.toString()
+ advisory.id.toString() + '-' + advisory.last_notified_at
117
);
118
});
119
@@ -130,7 +130,7 @@ export default function Header({ isMaintenance }) {
130
131
132
const readBulletins = bulletinsData.filter(bulletin => cmsContext.readBulletins.includes(
133
- bulletin.id.toString() + '-' + bulletin.last_notified_at.toString()
+ bulletin.id.toString() + '-' + bulletin.last_notified_at
134
));
135
return bulletinsData.length - readBulletins.length;
136
0 commit comments