Skip to content

Commit

Permalink
fix: repair webgui
Browse files Browse the repository at this point in the history
was broken since v3.9.0 and nobody noticed
  • Loading branch information
hoodie committed Jan 13, 2020
1 parent b46bf45 commit 5f509bb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion webapp/public/bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions webapp/public/bundle.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions webapp/src/ProjectList.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@
<td>{project.invoice.number || ''}</td>
<td>{project.event.date}</td>
<td class="checkbox">
<span class="checkbox" data-toggle="tooltip" data-placement="bottom" title="{project.errors.ready_for_offer }">
{boolSym(project.checks.ready_for_offer )}
<span class="checkbox" data-toggle="tooltip" data-placement="bottom" title="{project.errors.missing_for_offer }">
{boolSym(project.checks.missing_for_offer )}
</span>
<span class="checkbox" data-toggle="tooltip" data-placement="bottom" title="{project.errors.ready_for_invoice}">
{boolSym(project.checks.ready_for_invoice)}
<span class="checkbox" data-toggle="tooltip" data-placement="bottom" title="{project.errors.missing_for_invoice}">
{boolSym(project.checks.missing_for_invoice)}
</span>
<span class="checkbox" data-toggle="tooltip" data-placement="bottom" title="{project.errors.ready_for_archive}">
{boolSym(project.checks.ready_for_archive)}
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/ProjectView.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h2 class="card-title">
<div class="col-3">
{project.event.manager}
<ul class="list-inline">
{#each project.errors.ready_for_invoice as error}
{#each project.errors.missing_for_invoice as error}
<li>❌ {error}</li>
{/each}
</ul>
Expand Down

0 comments on commit 5f509bb

Please sign in to comment.