blueberry
blueberry
DDeno
Created by blueberry on 3/28/2024 in #help
Fresh 1.6 - Deno Deploy - Tailwind
No description
2 replies
DDeno
Created by blueberry on 3/11/2024 in #help
Partials in a redirect ???
Does anyone have any idea how i can redirect after login to a route with initialised partial: Example: This a-link would take you to the dashboard and fill the partial with overview html.
<a href="/home/dashboard" f-partial="/partials/home/overview">Overview</a>
<a href="/home/dashboard" f-partial="/partials/home/overview">Overview</a>
But when I log in and redirect to "/home/dashboard" is there something i can set for f-partial=???:
headers.set("Location", "/home/dashboard");
return new Response(null, {
status: 303,
headers,
});
headers.set("Location", "/home/dashboard");
return new Response(null, {
status: 303,
headers,
});
1 replies