I'm not able to insert findings variables in a table #318
-
|
Hello! i need to create a table like this |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
Hi, For example in the columns The "Demo Calzone" design has a similar table that you can use as a starting point: |
Beta Was this translation helpful? Give feedback.





Sure, you can add
owasp_top10_2021as a finding field. This is anenumobject that you can then use in your report, e.g.{{ finding.owasp_top10_2021.label }}. This would print "A01:2021 - Broken Access Control" to your report.You can use lodash to postprocess the label, e.g. strip
:2021by usinglodash.replace(finding.owasp_top10_2021.label, ':2021', '')