Skip to content

Commit

Permalink
Revert logic to change feature and function col rename
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Upadhyay <[email protected]>
  • Loading branch information
shubham251972 authored Jul 27, 2024
1 parent 0b5bb71 commit 57cb618
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion layouts/shortcodes/csvtable.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ <h2>{{ $category }} Permissions</h2>
<tr>
{{ range $i, $col := $header }}
{{ if not (in $excludedColumns $col) }}
<th>{{ $col }}</th>
{{ if eq $col "Function" }}
<th>Permission</th>
{{ else if eq $col "Feature" }}
<th>Description</th>
{{ else }}
<th>{{ $col }}</th>
{{ end }}
{{ end }}
{{ end }}
</tr>
Expand Down

0 comments on commit 57cb618

Please sign in to comment.