Skip to content

Commit

Permalink
refactor: clean code
Browse files Browse the repository at this point in the history
work on #9
  • Loading branch information
bsorrentino committed Jul 17, 2024
1 parent 153fc4f commit eab9785
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jetty/src/main/js/src/lg4j-result.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class LG4JResultElement extends LitElement {
${Object.entries(result.state).map(([key, value]) => html`
<tr>
<td width="30%">${key}</td>
<td width="70%">${value}</td>
<td width="70%">${JSON.stringify(value,4)}</td>
</tr>
`)}
</tbody>
Expand Down
Loading

0 comments on commit eab9785

Please sign in to comment.