feat: add FooterTips component and integrate it into TestRunPanel; extend DatasourceType enum with onlineDrive
parent
c7cec120a6
commit
cf7574bd10
@ -0,0 +1,14 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
|
||||||
|
const FooterTips = () => {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='system-xs-regular flex grow flex-col justify-end p-4 pt-2 text-text-tertiary'>
|
||||||
|
{t('datasetPipeline.testRun.tooltip')}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default React.memo(FooterTips)
|
||||||
Loading…
Reference in New Issue