Skip to content
Snippets Groups Projects
Unverified Commit f282db5b authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

don't show object detail header in a data app context (#25812)

parent 97b47047
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,7 @@ export interface ObjectDetailProps {
canZoom: boolean;
canZoomPreviousRow: boolean;
canZoomNextRow: boolean;
isDataApp?: boolean;
showActions?: boolean;
showRelations?: boolean;
onVisualizationClick: OnVisualizationClickType;
......@@ -131,6 +132,7 @@ export function ObjectDetailFn({
canZoom,
canZoomPreviousRow,
canZoomNextRow,
isDataApp = false,
showActions = true,
showRelations = true,
onVisualizationClick,
......@@ -249,17 +251,19 @@ export function ObjectDetailFn({
</ErrorWrapper>
) : (
<div className="ObjectDetail" data-testid="object-detail">
<ObjectDetailHeader
canZoom={canZoom && (canZoomNextRow || canZoomPreviousRow)}
objectName={objectName}
objectId={displayId}
canZoomPreviousRow={canZoomPreviousRow}
canZoomNextRow={canZoomNextRow}
showActions={showActions}
viewPreviousObjectDetail={viewPreviousObjectDetail}
viewNextObjectDetail={viewNextObjectDetail}
closeObjectDetail={closeObjectDetail}
/>
{!isDataApp && (
<ObjectDetailHeader
canZoom={canZoom && (canZoomNextRow || canZoomPreviousRow)}
objectName={objectName}
objectId={displayId}
canZoomPreviousRow={canZoomPreviousRow}
canZoomNextRow={canZoomNextRow}
showActions={showActions}
viewPreviousObjectDetail={viewPreviousObjectDetail}
viewNextObjectDetail={viewNextObjectDetail}
closeObjectDetail={closeObjectDetail}
/>
)}
<ObjectDetailBodyWrapper>
<ObjectDetailBody
data={data}
......@@ -304,6 +308,7 @@ function ObjectDetailWrapper({
showActions={false}
showRelations={false}
closeObjectDetail={closeObjectDetail}
isDataApp={isDataApp}
/>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment