fix: use NextJS basePath and WEB_PREFIX to support custom prefix (#19497)
Co-authored-by: johnny0120 <15564476+johnny0120@users.noreply.github.com>
This commit is contained in:
@@ -112,7 +112,7 @@ const IterationResultPanel: FC<Props> = ({
|
||||
'transition-all duration-200',
|
||||
expandedIterations[index]
|
||||
? 'opacity-100'
|
||||
: 'max-h-0 opacity-0 overflow-hidden',
|
||||
: 'max-h-0 overflow-hidden opacity-0',
|
||||
)}>
|
||||
<TracingPanel
|
||||
list={iteration}
|
||||
|
@@ -118,7 +118,7 @@ const LoopResultPanel: FC<Props> = ({
|
||||
'transition-all duration-200',
|
||||
expandedLoops[index]
|
||||
? 'opacity-100'
|
||||
: 'max-h-0 opacity-0 overflow-hidden',
|
||||
: 'max-h-0 overflow-hidden opacity-0',
|
||||
)}>
|
||||
{
|
||||
loopVariableMap?.[index] && (
|
||||
|
@@ -85,7 +85,7 @@ const LoopResultPanel: FC<Props> = ({
|
||||
'transition-all duration-200',
|
||||
expandedLoops[index]
|
||||
? 'opacity-100'
|
||||
: 'max-h-0 opacity-0 overflow-hidden',
|
||||
: 'max-h-0 overflow-hidden opacity-0',
|
||||
)}>
|
||||
<TracingPanel
|
||||
list={loop}
|
||||
|
Reference in New Issue
Block a user