Skip to content

Commit

Permalink
Merge pull request #5835 from perlpunk/fix-spaces-in-flavor
Browse files Browse the repository at this point in the history
Ensure valid format for HTML element ids
  • Loading branch information
kalikiana authored Aug 7, 2024
2 parents 65a4dec + 0c899e0 commit 4770abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/webapi/test/overview_result_table.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<td>-</td>
% next;
% }
% my $resultid = join('_', $type, $arch, $config);
% my $resultid = join('_', $type, $arch, $config) =~ tr/ /_/r;
%= include 'test/tr_job_result', resultid => $resultid, res => $res, state => $state, jobid => $jobid
% }
</tr>
Expand Down

0 comments on commit 4770abe

Please sign in to comment.