From 723166936246d3e7db838bcca766f9d73c6346ed Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Fri, 31 Oct 2025 11:11:36 +0700 Subject: [PATCH] Add survey on RBL report and Domain report page --- web/src/routes/blacklist/[ip]/+page.svelte | 8 +++++++- web/src/routes/domain/[domain]/+page.svelte | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/web/src/routes/blacklist/[ip]/+page.svelte b/web/src/routes/blacklist/[ip]/+page.svelte index 4556552..1516751 100644 --- a/web/src/routes/blacklist/[ip]/+page.svelte +++ b/web/src/routes/blacklist/[ip]/+page.svelte @@ -3,7 +3,7 @@ import { onMount } from "svelte"; import { checkBlacklist } from "$lib/api"; import type { BlacklistCheckResponse } from "$lib/api/types.gen"; - import { GradeDisplay, BlacklistCard } from "$lib/components"; + import { BlacklistCard, GradeDisplay, TinySurvey } from "$lib/components"; import { theme } from "$lib/stores/theme"; let ip = $derived($page.params.ip); @@ -129,6 +129,12 @@ +
+ +
diff --git a/web/src/routes/domain/[domain]/+page.svelte b/web/src/routes/domain/[domain]/+page.svelte index 7ce9ee4..424b848 100644 --- a/web/src/routes/domain/[domain]/+page.svelte +++ b/web/src/routes/domain/[domain]/+page.svelte @@ -3,7 +3,7 @@ import { onMount } from "svelte"; import { testDomain } from "$lib/api"; import type { DomainTestResponse } from "$lib/api/types.gen"; - import { GradeDisplay, DnsRecordsCard } from "$lib/components"; + import { DnsRecordsCard, GradeDisplay, TinySurvey } from "$lib/components"; import { theme } from "$lib/stores/theme"; let domain = $derived($page.params.domain); @@ -124,6 +124,12 @@ +
+ +