Skip to content

Commit

Permalink
🤖 Automatically update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
jpelay authored and actions-user committed Oct 23, 2024
1 parent b77a209 commit 836bc6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions static/js/appbundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -119465,9 +119465,9 @@ def note_with_error(value, err):
}
function createHtmlForAccountsTable(accounts) {
let result = "";
for (let account of accounts) {
for (let [index3, account] of accounts.entries()) {
result += `
<tr class="border border-gray-600">
<tr class="${index3 % 2 ? "bg-white" : "bg-gray-200"}">
<td class="text-center px-4 py-2">${account["username"]}</td>
<td class="text-center px-4 py-2">${account["password"]}</td>
</tr>`;
Expand Down
Loading

0 comments on commit 836bc6b

Please sign in to comment.