Skip to content

Commit d926e58

Browse files
committed
bugfix: null check added
1 parent 172c21e commit d926e58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/Stepper/VerticalStepper/AutoVerticalStepper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const AutoVerticalStepper = React.forwardRef<
9696
{data.description && (
9797
<div
9898
className="stepper-discription"
99-
dangerouslySetInnerHTML={{ __html: data.description }}
99+
dangerouslySetInnerHTML={{ __html: data?.description }}
100100
/>
101101
)}
102102
</>

0 commit comments

Comments
 (0)