Skip to content

Commit

Permalink
fix(): Fix Query Detail Modal Scroll + add misc log messages (datahub…
Browse files Browse the repository at this point in the history
  • Loading branch information
jjoyce0510 authored Mar 10, 2023
1 parent b82afa8 commit 947990a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void checkSystemVersion(final ConsumerRecord<String, GenericRecord> consu
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) {
Expand Down

0 comments on commit 947990a

Please sign in to comment.