Skip to content

Commit

Permalink
build: admin webapp: ignore some lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Jan 27, 2025
1 parent 5862b38 commit 20fc8e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 2 additions & 0 deletions apps/admin/webapp/src/lib/InPlaceEdit.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@
</script>

{#if editing}
<!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
<form on:submit|preventDefault={submit} on:keydown={keydown}>
<input bind:value on:blur={submit} {required} use:focus/>
</form>
{:else}
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div on:dblclick={edit}>
{value}
</div>
Expand Down
9 changes: 2 additions & 7 deletions apps/admin/webapp/src/lib/PolicyUserGroups.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,7 @@
</script>

<div class="row" style="color: {statusColor}; text-align: center">
{#if status !== ''}
<h2>{status}</h2>
{:else}
<h2>&nbsp;</h2>

{/if}
<h2>{status}</h2>
</div>

<div class="row">
Expand Down Expand Up @@ -517,7 +512,6 @@
</td>
</tr>
{/each}
</tbody>
<tr>
<td>
<button type="button" class="btn btn-sm btn-outline-success" style="font-size:10px"
Expand All @@ -531,6 +525,7 @@
</button>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
Expand Down

0 comments on commit 20fc8e8

Please sign in to comment.