Skip to content

Commit 7046193

Browse files
authored
Removed inline on h1 tag in Method (#13)
* Removed inline on h1 tag in Method * Fixed linting
1 parent 622b899 commit 7046193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Method/Method.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const Method = ({method, uiSchema, key, methodPlugins, reactJsonOptions, onExamp
5757
className="method margin-bottom--sm"
5858
>
5959

60-
<h1 key={method.name} className="method-name" style={{ display: "inline", marginRight: "3px"}}>{method.name}</h1>
60+
<h1 key={method.name} className="method-name" style={{ marginRight: "3px" }}>{method.name}</h1>
6161

6262
{method.tags && method.tags.length > 0 && <section key="tags">
6363
<Tags tags={method.tags as any} />

0 commit comments

Comments
 (0)