mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-27 10:26:09 +00:00
Minor: bug fixes and improvements (#16138)
* Fix the alignment issue for the CopyToClipboard button * Fix the Ingestion run details modal heading Add Updated column in the ingestion run details modal table
This commit is contained in:
parent
5ab97b23e3
commit
9e7d56c5f4
@ -51,6 +51,10 @@ function IngestionRunDetailsModal({
|
||||
title: t('label.filtered'),
|
||||
dataIndex: 'filtered',
|
||||
},
|
||||
{
|
||||
title: t('label.updated'),
|
||||
dataIndex: 'updated_records',
|
||||
},
|
||||
{
|
||||
title: t('label.warning-plural'),
|
||||
dataIndex: 'warnings',
|
||||
@ -120,7 +124,7 @@ function IngestionRunDetailsModal({
|
||||
closable={false}
|
||||
maskClosable={false}
|
||||
okButtonProps={{ style: { display: 'none' } }}
|
||||
title={t('label.run-status-at-timestamp', {
|
||||
title={t('message.run-status-at-timestamp', {
|
||||
status: startCase(pipelineStatus?.pipelineState),
|
||||
timestamp: formatDateTime(pipelineStatus?.timestamp),
|
||||
})}
|
||||
|
@ -53,7 +53,7 @@ export const CopyToClipboardButton: FunctionComponent<Props> = ({
|
||||
)
|
||||
}>
|
||||
<Button
|
||||
className="h-8 m-l-md relative"
|
||||
className="h-8 m-l-md relative flex-center"
|
||||
data-testid="copy-secret"
|
||||
icon={<CopyIcon data-testid="copy-icon" width="16" />}
|
||||
type="text"
|
||||
|
Loading…
x
Reference in New Issue
Block a user