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 af17227 commit 0606313Copy full SHA for 0606313
yaml-generation/functions.php
@@ -76,8 +76,12 @@ function getDimensions($filename = "data/generated/dimensions.yaml") {
76
unset($content["iso27001-2022"]);
77
//echo var_dump($elements[$activityName]);
78
//echo "<hr>";
79
- $elements[$activityName] = $content;
80
+ if (!array_key_exists("tags", $content)) {
81
+ $content["tags"] = array();
82
+ }
83
+
84
+ $elements[$activityName] = $content;
85
}
86
$newElements = $elements;
87
ksort($newElements);
0 commit comments