Skip to content

Commit 0d2b1d9

Browse files
gmal1ChristianEdwardPadilla
authored andcommitted
fix typos in html attributes
1 parent 4969a7f commit 0d2b1d9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/utils/htmlElements.util.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,32 +18,32 @@ const HTMLelements: htmlElementsInt = {
1818
Image: {
1919
width: 100,
2020
height: 100,
21-
attributes: ["ClassName", "id", "Src"]
21+
attributes: ['className', 'id', 'src']
2222
},
2323
Button: {
2424
width: 75,
2525
height: 28,
26-
attributes: ["ClassName", "id", "Text"]
26+
attributes: ['className', 'id', 'text']
2727
},
2828
Form: {
2929
width: 150,
3030
height: 150,
31-
attributes: ["ClassName", "id", "Text"]
31+
attributes: ['className', 'id', 'text']
3232
},
3333
Paragraph: {
3434
width: 250,
3535
height: 75,
36-
attributes: ["ClassName", "id", "Text"]
36+
attributes: ['className', 'id', 'text']
3737
},
3838
List: {
3939
width: 75,
4040
height: 75,
41-
attributes: ["ClassName", "id", "Text"]
41+
attributes: ['className', 'id', 'text']
4242
},
4343
Link: {
4444
width: 50,
4545
height: 50,
46-
attributes: ["ClassName", "id", "Text"]
46+
attributes: ['className', 'id', 'text']
4747
}
4848
};
4949

0 commit comments

Comments
 (0)