From db06e88bada70fa4065f56fc33af7207943415c5 Mon Sep 17 00:00:00 2001 From: bliu2368 <75234625+bliu2368@users.noreply.github.com> Date: Fri, 28 Jul 2023 02:18:11 +1000 Subject: [PATCH] feat(core): set Cancellation Reason to be expanded by default (#10018) Co-authored-by: Jason --- .../core/src/pipeline/status/ExecutionCancellationReason.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/pipeline/status/ExecutionCancellationReason.tsx b/packages/core/src/pipeline/status/ExecutionCancellationReason.tsx index c6c7debb207..0c4b883910b 100644 --- a/packages/core/src/pipeline/status/ExecutionCancellationReason.tsx +++ b/packages/core/src/pipeline/status/ExecutionCancellationReason.tsx @@ -7,7 +7,7 @@ interface IExecutionCancellationReasonProps { } export function ExecutionCancellationReason({ cancellationReason }: IExecutionCancellationReasonProps) { - const [isExpanded, setIsExpanded] = React.useState(false); + const [isExpanded, setIsExpanded] = React.useState(true); return ( <>