Skip to content

Commit 3e24c3a

Browse files
authored
Merge pull request #90 from dlabaj/issue-40
fix: fixes capitialization issue with resume and pause log.
2 parents 9700620 + 231d3b0 commit 3e24c3a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/module/patternfly-docs/content/extensions/react-log-viewer/demos/ComplexToolbarLogViewer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export const ComplexToolbarLogViewer = () => {
177177
}}
178178
icon={isPaused ? <PlayIcon /> : <PauseIcon />}
179179
>
180-
{isPaused ? ` Resume Log` : ` Pause Log`}
180+
{isPaused ? ` Resume log` : ` Pause log`}
181181
</Button>
182182
);
183183

packages/module/patternfly-docs/content/extensions/react-log-viewer/examples/CustomControlLogViewer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const CustomControlLogViewer = () => {
2323
<ToolbarContent>
2424
<ToolbarItem>
2525
<Button onClick={onActionClick} variant="control">
26-
Test Action
26+
Test action
2727
</Button>
2828
</ToolbarItem>
2929
<ToolbarItem>

packages/module/patternfly-docs/generated/extensions/log-viewer/extensions.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)