diff --git a/frontend/src/App.css b/frontend/src/App.css
index c72aab078..84a4209a3 100644
--- a/frontend/src/App.css
+++ b/frontend/src/App.css
@@ -533,11 +533,15 @@
outline: none;
}
-.lineage-dag-node:focus circle,
.lineage-dag-node:hover circle {
stroke-width: 2.5;
}
+.lineage-dag-node:focus circle {
+ stroke: var(--color-focus-border);
+ stroke-width: 3.5;
+}
+
.lineage-dag-node[aria-current="true"] circle {
stroke-width: 3;
stroke: var(--text-h);
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 86a1e9b26..ac94a88c4 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -352,6 +352,7 @@ function ChatPanel({
onChange={(event) => setQuestion(event.target.value)}
onKeyDown={(event) => event.key === "Enter" && handleAsk()}
placeholder={t("What happened between these events?")}
+ aria-label={t("What happened between these events?")}
/>
- {rebuildError &&
{rebuildError}
}
+ {rebuildError && {rebuildError}
}
)}
@@ -4297,7 +4299,7 @@ function CustomerMasterPanel({
{t("Authorized customer scope")}
{t("Customer master")}
{t("Customer entities available to this account.")}
- {error ? {error}
: null}
+ {error ? {error}
: null}
{master === null && !error ? {t("Loading customer master...")}
: null}
{master?.corporate_entities.length === 0 ? (
{t("No customer entities are connected to this account.")}
@@ -4355,7 +4357,7 @@ function CustomerMasterPanel({
})}
)}
- {resolveError ? {resolveError}
: null}
+ {resolveError ? {resolveError}
: null}