Skip to content
Snippets Groups Projects
Commit 90f8253a authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 0.67.

parents d142c701 7d1f602d
Branches
Tags 0.67
No related merge requests found
Showing with 18 additions and 15 deletions
......@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## [0.67] - 2024-10-30
- Fix various things pointed out by Jenni during meeting
## [0.66] - 2024-10-26
bundle push
......
......@@ -30,7 +30,7 @@ const PolicySidebar = () => {
</Row>
<Row>
<Link to="/crisis-exercise" className="link-text-underline">
<span>Crisis Exercises - NREN Operation and Participatione</span>
<span>Crisis Exercises - NREN Operation and Participation</span>
</Link>
</Row>
<Row>
......
......@@ -117,7 +117,7 @@ function CompendiumData(): ReactElement {
</Row>
<Row>
<Link to="/crisis-exercise" className="link-text-underline">
<span>Crisis Exercises - NREN Operation and Participatione</span>
<span>Crisis Exercises - NREN Operation and Participation</span>
</Link>
</Row>
<Row>
......
......@@ -66,7 +66,7 @@ function FibreLightPage(): React.ReactElement {
{nrenMap.has(column_key) &&
showYears.map(year => {
const chargingYears = nrenMap.get(column_key)!;
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={""}/>;
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={""} rounded/>;
})
}
</td>
......@@ -77,7 +77,7 @@ function FibreLightPage(): React.ReactElement {
"Ownership and management are out-sourced (turn-key model)"].includes(key)).map(other_key => (
<div key={other_key}>
{Array.from(nrenMap.get(other_key)!).map(([year, fibreLight]) => (
<ColorPill key={year} year={year} active={true} tooltip={other_key} />
<ColorPill key={year} year={year} active={true} tooltip={other_key} rounded />
))}
</div>
))}
......
......@@ -66,7 +66,7 @@ function OPsAutomationPage(): React.ReactElement {
showYears.map(year => {
const chargingYears = nrenMap.get(column_key)!;
const serviceInfo = chargingYears.get(year);
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={serviceInfo?.ops_automation_specifics} rounded/>;
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={serviceInfo?.ops_automation_specifics} />;
})
}
</td>
......
......@@ -65,7 +65,7 @@ function SNPStandardsBusinessContinuityPage(): React.ReactElement {
showYears.map(year => {
const chargingYears = nrenMap.get(column_key)!;
const serviceInfo = chargingYears.get(year);
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={serviceInfo?.business_continuity_plans_specifics} rounded />;
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={serviceInfo?.business_continuity_plans_specifics} />;
})
}
</td>
......
......@@ -77,7 +77,7 @@ function SNPStandardsCrisisExercisesPage(): React.ReactElement {
showYears.map(year => {
const chargingYears = nrenMap.get(column_key)!;
const yearData = chargingYears.get(year);
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={""} />;
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={""} rounded />;
})
}
</td>
......
......@@ -89,7 +89,7 @@ function SNPStandardsSecurityControlsPage(): React.ReactElement {
showYears.map(year => {
const chargingYears = nrenMap.get(column_key)!;
const yearData = chargingYears.get(year);
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={""} />;
return <ColorPill key={year} year={year} active={chargingYears.has(year)} tooltip={""} rounded />;
})
}
</td>
......@@ -106,7 +106,7 @@ function SNPStandardsSecurityControlsPage(): React.ReactElement {
"Integrity checking"].includes(key)).map(other_key => (
<div key={other_key}>
{Array.from(nrenMap.get(other_key)!).map(([year, fibreLight]) => (
<ColorPill key={year} year={year} active={true} tooltip={other_key} />
<ColorPill key={year} year={year} active={true} tooltip={other_key} rounded />
))}
</div>
))}
......
......@@ -200,11 +200,11 @@ $year-colors: (
#CE3D5B,
#1B90AC,
#FF8D5A,
#FF1790,
#8C6896,
#1E82B6,
#13AC9C,
#5454A8,
#8C6896,
#FF1790,
#0069b0,
);
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='compendium-v2',
version="0.66",
version="0.67",
author='GEANT',
author_email='swd@geant.org',
description='Flask and React project for displaying '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment