diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-06-17 12:06:25 -0700 | 
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-06-17 12:06:25 -0700 | 
| commit | f197e701a21e40f65b17ba2a5a25bb0cda7003f2 (patch) | |
| tree | d58a55e78d523fa2beb3b4beeae27f1c100e94c8 /extension/react-app/src/tabs | |
| parent | 5ae9fdcf9aadf57101ecfd4b7635f4325f53d392 (diff) | |
| download | sncontinue-f197e701a21e40f65b17ba2a5a25bb0cda7003f2.tar.gz sncontinue-f197e701a21e40f65b17ba2a5a25bb0cda7003f2.tar.bz2 sncontinue-f197e701a21e40f65b17ba2a5a25bb0cda7003f2.zip | |
more ui details
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]; | 
