Skip to content
Open
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 @@ -36,10 +36,10 @@ const ShaclValidationReport =


const tabs = [
{label: 'Details', value: 'details'},
{label: 'Overview', value: 'details'},

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why details is Overview?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overview is the page with state reports overview, is not details

{label: 'Coverage (XPath)', value: 'xpath'},
{label: 'Correctness (SPARQL)', value: 'sparql'},
{label: 'Compliance (SHACL)', value: 'shacl'},
{label: 'Completeness (SHACL)', value: 'shacl'},

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Leave SHACL as Compliance.

];

const Page = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const ResultSummaryCoverageShacl = ({validationReport, handleChangeTab}) => {
<Stack>
<Typography variant='secondary'>Result summary</Typography>
<Typography fontSize='18'
fontWeight='bold'>Coverage (SHACL)</Typography>
fontWeight='bold'>Completeness (SHACL)</Typography>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compliance

</Stack>
<Button endIcon={<OpenInNewIcon/>}
onClick={() => handleChangeTab('shacl')}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ResultSummaryCoverageSparql = ({validationReport, handleChangeTab}) => {
<Stack>
<Typography variant='secondary'>Result summary</Typography>
<Typography fontSize='18'
fontWeight='bold'>Coverage (SPARQL)</Typography>
fontWeight='bold'>Correctness (SPARQL)</Typography>
</Stack>
<Button endIcon={<OpenInNewIcon/>}
onClick={() => handleChangeTab('sparql')}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Pie = ({data, handleExport}) => {
justifyContent='space-between'>
<Stack>
<Typography fontSize='18'
fontWeight='bold'>Coverage (SHACL)</Typography>
fontWeight='bold'>Completeness (SHACL)</Typography>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compliance

</Stack>
<ExportButton handleExport={handleExport}/>
</Stack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Pie = ({data, handleExport}) => {
justifyContent='space-between'>
<Stack>
<Typography fontSize='18'
fontWeight='bold'>Coverage (SPARQL)</Typography>
fontWeight='bold'>Correctness (SPARQL)</Typography>
</Stack>
<ExportButton handleExport={handleExport}/>
</Stack>
Expand Down