diff --git a/public/app/features/migrate-to-cloud/onprem/StatusCell.tsx b/public/app/features/migrate-to-cloud/onprem/StatusCell.tsx index e5ccef6049c..aff69dae884 100644 --- a/public/app/features/migrate-to-cloud/onprem/StatusCell.tsx +++ b/public/app/features/migrate-to-cloud/onprem/StatusCell.tsx @@ -7,10 +7,11 @@ export function StatusCell(props: CellProps) { const { status, error } = props.row.original; // Keep these here to preserve the translations - // t('migrate-to-cloud.resource-status.not-migrated', 'Not yet uploaded') // t('migrate-to-cloud.resource-status.migrating', 'Uploading...') - if (status === 'OK') { + if (status === 'PENDING') { + return {t('migrate-to-cloud.resource-status.not-migrated', 'Not yet uploaded')}; + } else if (status === 'OK') { return {t('migrate-to-cloud.resource-status.migrated', 'Uploaded to cloud')}; } else if (status === 'ERROR') { return (