fix(): Fix Query Detail Modal Scroll + add misc log messages (#7530)

This commit is contained in:
John Joyce 2023-03-09 18:02:13 -08:00 committed by GitHub
parent b82afa89f1
commit 947990ac8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View File

@ -123,9 +123,10 @@ export default function QueryCardDetails({
)) || <EmptyText>No description</EmptyText>}
</Description>
<Date>
{createdAtMs && (
{(createdAtMs && (
<Typography.Text type="secondary">Created on {toLocalDateString(createdAtMs)}</Typography.Text>
)}
)) ||
undefined}
</Date>
</Details>
);

View File

@ -56,6 +56,9 @@ const QueryContainer = styled.div`
const NestedSyntax = styled(SyntaxHighlighter)`
background-color: transparent !important;
border: none !important;
height: 100% !important;
margin: 0px !important;
padding: 12px !important;
`;
type Props = {

View File

@ -85,7 +85,7 @@ public class DataHubUpgradeKafkaListener implements ConsumerSeekAware, Bootstrap
if (expectedVersion.equals(event.getVersion())) {
IS_UPDATED.getAndSet(true);
} else {
log.debug("System version is not up to date: {}", expectedVersion);
log.info("System version is not up to date: {}. Waiting for datahub-upgrade to complete...", expectedVersion);
}
} catch (Exception e) {