Skip to content

Commit

Permalink
fix: double points for implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
wurstbrot committed Aug 18, 2021
1 parent ab282e4 commit 69f12fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions detail.php
Expand Up @@ -62,12 +62,12 @@ function printDetail($dimension, $subdimension, $activityName, $dimensions, $rep
echo build_table_tooltip($element, $headerWeight + 1);
$evidenceContent = getElementContentAndCheckExistence($element, "evidence", true);
if ($evidenceContent == "") {
$evidenceContent = "TODO";
$evidenceContent = "TODO";
}
if (IS_SHOW_EVIDENCE_TODO || $evidenceContent != "TODO")
echo "<h" .($headerWeight + 2) . ">" . "Evidence" . "</h" .($headerWeight + 2) . ">" . $evidenceContent;

echo "<hr/>";
echo "<hr/>";

if (array_key_exists("assessment", $element)) {
$Parsedown = new Parsedown();
Expand Down Expand Up @@ -106,7 +106,7 @@ function printDetail($dimension, $subdimension, $activityName, $dimensions, $rep
echo $tag . " ";
}
} else {
echo "<li>$implementationElement</li>";
echo "$implementationElement";
}
echo "</li>";
}
Expand Down

0 comments on commit 69f12fc

Please sign in to comment.