Skip to content

Commit 25e4101

Browse files
committed
Fix css class name
1 parent 18527c1 commit 25e4101

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
1.1.6 (????-??-??)
5+
------------------
6+
7+
* Fix CSS class name.
8+
9+
410
1.1.5 (2025-01-08)
511
------------------
612

src/components/forms.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function Forms(props: PageProps) {
3333

3434
return <>
3535
<h2 key="-1">Actions</h2>
36-
<ul className="action-buttons">
36+
<ul className="button-actions">
3737
{buttonForms.map( (form, index) => <li key={index}>{form}</li>)}
3838
</ul>
3939
{forms.map( (form, index) => <span key={index}>{form}</span>)}

0 commit comments

Comments
 (0)