Skip to content
This repository was archived by the owner on Nov 22, 2022. It is now read-only.

Commit 916e645

Browse files
Fix typo in function name
1 parent 8fa726f commit 916e645

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/library/src/util/page.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { stripIndent } from 'common-tags'
22
import { range } from 'lodash'
33

4-
const makeAttibutes = (attrs={}) =>
4+
const makeAttributes = (attrs={}) =>
55
Object.entries(attrs)
66
.map(([attr, val]) => `${ attr }="${ val }"`)
77
.join(' ')
@@ -171,7 +171,7 @@ export const processItem = i => {
171171
<input name="${ i.name }"
172172
${ i.required ? 'required' : '' }
173173
class="w-100"
174-
${ makeAttibutes(i.attributes) }
174+
${ makeAttributes(i.attributes) }
175175
>
176176
`
177177
)
@@ -243,7 +243,7 @@ export const processItem = i => {
243243
<input name="${ i.name }" type="range"
244244
${ i.required ? 'required' : '' }
245245
class="w-100"
246-
${ makeAttibutes(i.attributes) }
246+
${ makeAttributes(i.attributes) }
247247
>
248248
`
249249
)

0 commit comments

Comments
 (0)