Skip to content

Commit

Permalink
chore(components): fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
stnguyen90 authored and TorstenDittmann committed Feb 22, 2024
1 parent e67c7e7 commit c72ba12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/elements/forms/inputDate.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
{max}
autocomplete={autocomplete ? 'on' : 'off'}
type="date"
style={disabled ? "" : "cursor: pointer;"}
style={disabled ? '' : 'cursor: pointer;'}
class="input-text"
bind:value
bind:this={element}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/elements/forms/inputTime.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
autocomplete={autocomplete ? 'on' : 'off'}
type="time"
class="input-text"
style={disabled ? "" : "cursor: pointer;"}
style={disabled ? '' : 'cursor: pointer;'}
bind:value
bind:this={element}
on:invalid={handleInvalid}
Expand Down

0 comments on commit c72ba12

Please sign in to comment.