Skip to content

Commit

Permalink
fix: linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
6eDesign committed Jan 26, 2020
1 parent 05d0aa1 commit 4ed23e2
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 14 deletions.
6 changes: 3 additions & 3 deletions docs/bundle.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/bundle.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/test.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/test.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/test.js.map

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions src/Components/Datepicker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,14 @@
<span>{day[1]}</span>
{/each}
</div>
<Month {visibleMonth} {selected} {highlighted} {shouldShakeDate} {start}
{end} id={visibleMonthId} on:dateSelected={e => registerSelection(e.detail)} />
<Month
{visibleMonth}
{selected}
{highlighted}
{shouldShakeDate}
id={visibleMonthId}
on:dateSelected={e => registerSelection(e.detail)}
/>
</div>
</div>
</Popover>
Expand Down
2 changes: 0 additions & 2 deletions src/Components/Month.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
export let id;
export let visibleMonth;
export let selected;
export let start;
export let end;
export let highlighted;
export let shouldShakeDate;
Expand Down

0 comments on commit 4ed23e2

Please sign in to comment.