Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
if (isSimulationRunning && !userManuallyExpandedAccordion) {
setIsAccordionExpanded(getCurrentStage().id);
}
}, [progress, isSimulationRunning, userManuallyExpandedAccordion]);

Check warning on line 177 in packages/module/patternfly-docs/content/extensions/chatbot/examples/Messages/UserMessageWithExtraContent.tsx

View workflow job for this annotation

GitHub Actions / call-build-lint-test-workflow / lint

React Hook useEffect has a missing dependency: 'getCurrentStage'. Either include it or remove the dependency array

const onExpandCard = (_event: React.MouseEvent) => {
setIsCardExpanded(!isCardExpanded);
Expand Down Expand Up @@ -320,7 +320,16 @@
</CardHeader>
<CardExpandableContent>
<CardBody>
<hr className="pf-v6-u-mb-md" />
<hr
style={
{
border: 'none',
height: 'var(--pf-t--global--border--width--divider--default)',
backgroundColor: 'var(--pf-t--global--border--color--control--read-only)'
} as React.CSSProperties
}
className="pf-v6-u-mb-md"
/>
<Accordion
style={
{
Expand Down
Loading