diff --git a/dinky-web/src/components/Icons/HomeIcon.tsx b/dinky-web/src/components/Icons/HomeIcon.tsx
index a7350c0230..1390e8c0dd 100644
--- a/dinky-web/src/components/Icons/HomeIcon.tsx
+++ b/dinky-web/src/components/Icons/HomeIcon.tsx
@@ -33,10 +33,6 @@ export const ClusterInstanceIcon = (props: any) => {
version='1.1'
xmlns='http://www.w3.org/2000/svg'
>
-
{
const {
@@ -34,6 +36,9 @@ const JobLineage = (props: { jobDetail: { id: number } }) => {
tables: [],
relations: []
});
+
+ const theme = useTheme() as 'realDark' | 'light';
+
const queryLineageData = () => {
queryDataByParams(API_CONSTANTS.JOB_INSTANCE_GET_LINEAGE, { id: jobInstanceId }).then((res) =>
setLineageData(res as LineageDetailInfo)
@@ -52,7 +57,9 @@ const JobLineage = (props: { jobDetail: { id: number } }) => {
style={{ height: parent.innerHeight - 180 }}
>
{lineageData && (lineageData.tables.length !== 0 || lineageData.relations.length !== 0) ? (
-
+
+
+
) : (
)}