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 1
1
// Libraries
2
2
import React , { useState , useContext , useRef } from 'react'
3
- import { DapperScrollbars , Sort } from '@influxdata/clockface'
4
3
5
4
// 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'
7
14
import { FlowListContext , FlowListProvider } from 'src/flows/context/flow.list'
8
15
import FlowCards from 'src/flows/components/FlowCards'
9
16
import SearchWidget from 'src/shared/components/search_widget/SearchWidget'
10
17
import ResourceSortDropdown from 'src/shared/components/resource_sort_dropdown/ResourceSortDropdown'
11
18
import { SortTypes } from 'src/shared/utils/sort'
12
19
import PresetFlows from 'src/flows/components/PresetFlows'
20
+ import RateLimitAlert from 'src/cloud/components/RateLimitAlert'
21
+
13
22
// Utils
14
23
import { pageTitleSuffixer } from 'src/shared/utils/pageTitles'
15
24
import { PROJECT_NAME_PLURAL } from 'src/flows'
@@ -115,7 +124,14 @@ const FlowsIndex = () => {
115
124
fullWidth = { false }
116
125
className = { `${ showButtonMode && 'withButtonHeader' } ` }
117
126
>
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 >
119
135
{ showButtonMode && (
120
136
< >
121
137
< PresetFlowsButtons />
You can’t perform that action at this time.
0 commit comments