We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 996e6e4 commit 1abd35eCopy full SHA for 1abd35e
src/flows/components/ReadOnlyPipeList.tsx
@@ -116,6 +116,9 @@ const ReadOnlyPipeList: FC = () => {
116
useCSSTransforms={false}
117
containerPadding={[0, 0]}
118
margin={[LAYOUT_MARGIN, LAYOUT_MARGIN]}
119
+ isDraggable={false}
120
+ isResizable={false}
121
+ draggableHandle=".cell--draggable"
122
>
123
{flow.data.allIDs
124
.filter(
src/flows/components/VersionPage.tsx
@@ -39,7 +39,7 @@ const ReadOnlyFlowPage: FC = () => {
39
const {flow} = useContext(FlowContext)
40
41
return (
42
- <Page titleTag={flow.name + ' (Shared) | InfluxDB Cloud'}>
+ <Page titleTag={`${flow.name} | InfluxDB Cloud`}>
43
<VersionHeader />
44
<Page.Contents fullWidth={true} scrollable={false} className="flow-page">
45
<PopupProvider>
0 commit comments