Second onclick pass

This commit is contained in:
Christoph Kluge
2025-02-04 12:52:56 +01:00
parent aaafde4a7c
commit 8fcdd24f84
9 changed files with 11 additions and 11 deletions

View File

@@ -114,13 +114,13 @@
class="btn btn-primary"
type="button"
id="add-project-button"
on:click|preventDefault={() => handleAddProject}>Add</button
on:click|preventDefault={() => handleAddProject()}>Add</button
>
<button
class="btn btn-danger"
type="button"
id="remove-project-button"
on:click|preventDefault={() => handleRemoveProject}>Remove</button
on:click|preventDefault={() => handleRemoveProject()}>Remove</button
>
</div>
<p>

View File

@@ -119,13 +119,13 @@
class="btn btn-primary"
type="button"
id="add-role-button"
on:click|preventDefault={() => handleAddRole}>Add</button
on:click|preventDefault={() => handleAddRole()}>Add</button
>
<button
class="btn btn-danger"
type="button"
id="remove-role-button"
on:click|preventDefault={() =>handleRemoveRole}>Remove</button
on:click|preventDefault={() =>handleRemoveRole()}>Remove</button
>
</div>
<p>

View File

@@ -63,7 +63,7 @@
class="btn btn-primary"
type="button"
id="edit-notice-button"
on:click|preventDefault={() => handleEditNotice}>Edit Notice</button
on:click|preventDefault={() => handleEditNotice()}>Edit Notice</button
>
</div>
<p>

View File

@@ -33,7 +33,7 @@
type="checkbox"
id="scramble-names-checkbox"
style="margin-right: 1em;"
on:click={() => handleScramble}
on:click={() => handleScramble()}
bind:checked={scrambled}
/>
Active?

View File

@@ -53,7 +53,7 @@
<Button
color="secondary"
size="sm"
on:click={() => reloadUserList}
on:click={() => reloadUserList()}
style="float: right;">Reload</Button
>
</p>