File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change 11// Libraries
22import React , { useState , useContext , useRef } from 'react'
3- import { DapperScrollbars , Sort } from '@influxdata/clockface'
43
54// Components
6- import { Page , PageHeader } from '@influxdata/clockface'
5+ import {
6+ DapperScrollbars ,
7+ FlexBox ,
8+ FlexDirection ,
9+ JustifyContent ,
10+ Page ,
11+ PageHeader ,
12+ Sort ,
13+ } from '@influxdata/clockface'
714import { FlowListContext , FlowListProvider } from 'src/flows/context/flow.list'
815import FlowCards from 'src/flows/components/FlowCards'
916import SearchWidget from 'src/shared/components/search_widget/SearchWidget'
1017import ResourceSortDropdown from 'src/shared/components/resource_sort_dropdown/ResourceSortDropdown'
1118import { SortTypes } from 'src/shared/utils/sort'
1219import PresetFlows from 'src/flows/components/PresetFlows'
20+ import RateLimitAlert from 'src/cloud/components/RateLimitAlert'
21+
1322// Utils
1423import { pageTitleSuffixer } from 'src/shared/utils/pageTitles'
1524import { PROJECT_NAME_PLURAL } from 'src/flows'
@@ -115,7 +124,14 @@ const FlowsIndex = () => {
115124 fullWidth = { false }
116125 className = { `${ showButtonMode && 'withButtonHeader' } ` }
117126 >
118- < Page . Title title = { PROJECT_NAME_PLURAL } />
127+ < FlexBox
128+ direction = { FlexDirection . Row }
129+ justifyContent = { JustifyContent . SpaceBetween }
130+ stretchToFitWidth
131+ >
132+ < Page . Title title = { PROJECT_NAME_PLURAL } />
133+ < RateLimitAlert />
134+ </ FlexBox >
119135 { showButtonMode && (
120136 < >
121137 < PresetFlowsButtons />
You can’t perform that action at this time.
0 commit comments