mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-28 18:38:17 +00:00
fix(): Fix Query Detail Modal Scroll + add misc log messages (#7530)
This commit is contained in:
parent
b82afa89f1
commit
947990ac8b
@ -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>
|
||||
);
|
||||
|
||||
@ -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 = {
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user