| ${t("secretsStore.name")} |
${t("secretsStore.value")} |
+ ${t("secretsStore.allowedHosts")} |
${t("secretsStore.updated")} |
${t("secretsStore.actions")}
@@ -142,6 +144,13 @@ function renderTable(props: SecretsStoreViewProps): TemplateResult {
>${entry.kind === "env" ? entry.value : SECRET_MASK}
+ |
+
+ ${entry.kind === "secret" && (entry.allowedHosts?.length ?? 0) > 0
+ ? entry.allowedHosts?.join(", ")
+ : t("secretsStore.noAllowedHosts")}
+
+ |
|