We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d26304 commit d63a209Copy full SHA for d63a209
extensions/ql-vscode/src/remote-queries/view/LastUpdated.tsx
@@ -25,7 +25,7 @@ const LastUpdated = ({ lastUpdated }: Props) => (
25
<RepoPushIcon size={16} />
26
</IconContainer>
27
<Duration>
28
- {humanizeDuration(lastUpdated && -lastUpdated)}
+ {humanizeDuration(lastUpdated === undefined ? undefined : -lastUpdated)}
29
</Duration>
30
</>
31
) : (
0 commit comments