docs: rewrite user-facing documentation with screenshots #11

Merged
sharang merged 3 commits from docs/user-guide into main 2026-03-11 15:26:01 +00:00
Showing only changes of commit 32ef0d9e88 - Show all commits

View File

@@ -395,9 +395,12 @@ pub fn RepositoriesPage() -> Element {
readonly: true,
style: "font-family: monospace; font-size: 12px;",
value: {
#[cfg(feature = "web")]
let origin = web_sys::window()
.and_then(|w| w.location().origin().ok())
.and_then(|w: web_sys::Window| w.location().origin().ok())
.unwrap_or_default();
#[cfg(not(feature = "web"))]
let origin = String::new();
format!("{origin}/webhook/{}/{eid}", edit_webhook_tracker())
},
}