Skip to content

Commit 1abd35e

Browse files
authored
fix: update it so that readonly pipelists cant be resized (#4311)
1 parent 996e6e4 commit 1abd35e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/flows/components/ReadOnlyPipeList.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ const ReadOnlyPipeList: FC = () => {
116116
useCSSTransforms={false}
117117
containerPadding={[0, 0]}
118118
margin={[LAYOUT_MARGIN, LAYOUT_MARGIN]}
119+
isDraggable={false}
120+
isResizable={false}
121+
draggableHandle=".cell--draggable"
119122
>
120123
{flow.data.allIDs
121124
.filter(

src/flows/components/VersionPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const ReadOnlyFlowPage: FC = () => {
3939
const {flow} = useContext(FlowContext)
4040

4141
return (
42-
<Page titleTag={flow.name + ' (Shared) | InfluxDB Cloud'}>
42+
<Page titleTag={`${flow.name} | InfluxDB Cloud`}>
4343
<VersionHeader />
4444
<Page.Contents fullWidth={true} scrollable={false} className="flow-page">
4545
<PopupProvider>

0 commit comments

Comments
 (0)