File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -221,7 +221,11 @@ class MainListItem extends React.Component<Props> {
221221 style = { { marginRight : '8px' } }
222222 data-test-id = { `mainListItem-statusPill-${ status } ` }
223223 /> : null }
224- { this . props . showScheduleIcon ? < ScheduleImage /> : null }
224+ { this . props . showScheduleIcon ? (
225+ < ScheduleImage
226+ data-tip = "The Replica has scheduling enabled and will execute automatically"
227+ />
228+ ) : null }
225229 </ StatusWrapper >
226230 </ Title >
227231 { endpointImages }
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import styled from 'styled-components'
2020
2121import StatusImage from '../../atoms/StatusImage'
2222import Button from '../../atoms/Button'
23+ import Tooltip from '../../atoms/Tooltip'
2324
2425import type { MainItem } from '../../../types/MainItem'
2526import Palette from '../../styleUtils/Palette'
@@ -184,6 +185,8 @@ class MainList extends React.Component<Props> {
184185 < Wrapper >
185186 { this . props . loading || this . props . items . length === 0 || this . props . showEmptyList ? < Separator /> : null }
186187 { renderContent ( ) }
188+ < Tooltip />
189+ { setTimeout ( ( ) => { Tooltip . rebuild ( ) } , 500 ) }
187190 </ Wrapper >
188191 )
189192 }
You can’t perform that action at this time.
0 commit comments