Skip to content

Commit

Permalink
playwright conditions detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikMatiasko committed Jul 30, 2024
1 parent 3ddb5b9 commit 3be7df5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Layout/BottomPanel/BottomPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Props } from './BottomPanel.types'
import * as styles from './BottomPanel.styles'

const BottomPanel: FC<Props> = (props) => {
const { actionPrimary, actionSecondary, attribute, value, iframeMode, leftPanelCollapsed, show } = props
const { actionPrimary, actionSecondary, attribute, dataTestId, value, iframeMode, leftPanelCollapsed, show } = props
return (
<AnimatePresence>
{show && (
Expand All @@ -17,6 +17,7 @@ const BottomPanel: FC<Props> = (props) => {
iframeMode === true && styles.iframeMode,
iframeMode === 'absolute' && styles.absolute,
]}
data-test-id={dataTestId}
exit={{
opacity: 0,
y: 150,
Expand Down
1 change: 1 addition & 0 deletions src/components/Layout/BottomPanel/BottomPanel.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export type Props = {
actionPrimary?: ReactNode
actionSecondary?: ReactNode
attribute?: string
dataTestId?: string
iframeMode?: boolean | string
leftPanelCollapsed?: boolean
value?: string | number
Expand Down

0 comments on commit 3be7df5

Please sign in to comment.