Skip to content

Commit e82fac4

Browse files
author
Larry Botha
committed
style(various files): prettier formatting
1 parent b953ed6 commit e82fac4

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

lib/components/Field.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
value={$form[name]}
1515
on:change={handleChange}
1616
on:blur={handleChange}
17-
{...$$props} />
17+
{...$$props}
18+
/>

lib/components/Form.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@
4545
{handleChange}
4646
{handleSubmit}
4747
{updateField}
48-
{updateTouched} />
48+
{updateTouched}
49+
/>
4950
</form>

lib/components/Select.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
value={$form[name]}
1313
on:change={handleChange}
1414
on:blur={handleChange}
15-
{...$$props}>
15+
{...$$props}
16+
>
1617
<slot />
1718
</select>

test/library.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ describe('createForm', () => {
584584
})
585585
.then(done);
586586
});
587+
587588
it('when a is false, b is not required', (done) => {
588589
instance = getInstance({
589590
initialValues: {

0 commit comments

Comments
 (0)