diff options
Diffstat (limited to 'extension/react-app/src/tabs')
| -rw-r--r-- | extension/react-app/src/tabs/gui.tsx | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx index 6aa20e0e..624d22d5 100644 --- a/extension/react-app/src/tabs/gui.tsx +++ b/extension/react-app/src/tabs/gui.tsx @@ -331,6 +331,8 @@ function GUI(props: GUIProps) {          {history?.timeline.map((node: HistoryNode, index: number) => {            return (              <StepContainer +              isLast={index === history.timeline.length - 1} +              isFirst={index === 0}                open={stepsOpen[index]}                onToggle={() => {                  const nextStepsOpen = [...stepsOpen]; | 
