Skip to content

Commit

Permalink
fix: INFO statements for mustache lint
Browse files Browse the repository at this point in the history
  • Loading branch information
keevan committed Oct 15, 2024
1 parent 17ad558 commit 0000904
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion classes/dataflows_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function col_name(\stdClass $record): string {
$content[] = $extrainfo;
}
}
$html .= implode('<br/>', $content);
$html .= implode('<br>', $content);
return $html;
}

Expand Down
10 changes: 5 additions & 5 deletions templates/step-summary.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -63,28 +63,28 @@
<div class="col-sm">
<h6 class="text-center">{{#str}} inputs, tool_dataflows {{/str}}</h6>
{{#inputlist}}
<a href="{{{href}}}">{{label}}</a><br/>
<a href="{{{href}}}">{{label}}</a><br>
{{/inputlist}}
{{^inputlist}}
<p>{{#str}} no_inputs, tool_dataflows {{/str}}</p>
{{/inputlist}}
</div>
<div class="col-sm text-center border-right border-left">
{{{dotimage}}}<br/>
{{typename}}<br/>
{{{dotimage}}}<br>
{{typename}}<br>
</div>
<div class="col-sm">
<h6 class="text-center">{{#str}} outputs, tool_dataflows {{/str}}</h6>
{{#outputlist}}
<a href="{{{href}}}">{{label}}</a><br/>
<a href="{{{href}}}">{{label}}</a><br>
{{/outputlist}}
{{^outputlist}}
<p>{{#str}} no_outputs, tool_dataflows {{/str}}</p>
{{/outputlist}}
</div>
</div>
<div class="card-body">
{{inputrequirements}}<br/>
{{inputrequirements}}<br>
{{outputrequirements}}
</div>
</div>

0 comments on commit 0000904

Please sign in to comment.