diff --git a/frontend/src/pages/org/settings/settings.ts b/frontend/src/pages/org/settings/settings.ts
index 9bae8a83..74a1ed0f 100644
--- a/frontend/src/pages/org/settings/settings.ts
+++ b/frontend/src/pages/org/settings/settings.ts
@@ -206,6 +206,18 @@ export class OrgSettings extends BtrixElement {
@click=${this.navigate.link}
aria-selected=${isActive}
>
+ ${choose(name, [
+ [
+ "information",
+ () => html``,
+ ],
+ ["members", () => html``],
+ ["billing", () => html``],
+ [
+ "crawling-defaults",
+ () => html``,
+ ],
+ ])}
${this.tabLabels[name]}
`;
diff --git a/frontend/src/pages/org/workflow-detail.ts b/frontend/src/pages/org/workflow-detail.ts
index 81e52c07..4d2fc0e4 100644
--- a/frontend/src/pages/org/workflow-detail.ts
+++ b/frontend/src/pages/org/workflow-detail.ts
@@ -2,6 +2,7 @@ import { localized, msg, str } from "@lit/localize";
import type { SlSelect } from "@shoelace-style/shoelace";
import { type PropertyValues, type TemplateResult } from "lit";
import { customElement, property, state } from "lit/decorators.js";
+import { choose } from "lit/directives/choose.js";
import { ifDefined } from "lit/directives/if-defined.js";
import { until } from "lit/directives/until.js";
import { when } from "lit/directives/when.js";
@@ -566,6 +567,15 @@ export class WorkflowDetail extends LiteElement {
if (disabled) e.preventDefault();
}}
>
+ ${choose(tabName, [
+ [
+ "crawls",
+ () => html``,
+ ],
+ ["watch", () => html``],
+ ["logs", () => html``],
+ ["settings", () => html``],
+ ])}
${this.tabLabels[tabName]}
`;