From 783ce4b3b651379d9f7864464f0cf6402dc88de9 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 18 Feb 2026 14:41:03 -0700 Subject: [PATCH] version instead of os query param --- web/projects/shared/src/directives/docs-link.directive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/projects/shared/src/directives/docs-link.directive.ts b/web/projects/shared/src/directives/docs-link.directive.ts index e0ff60e69..2e2610954 100644 --- a/web/projects/shared/src/directives/docs-link.directive.ts +++ b/web/projects/shared/src/directives/docs-link.directive.ts @@ -29,7 +29,7 @@ export class DocsLinkDirective { const path = this.path() const relative = path.startsWith('/') ? path : `/${path}` - return `https://docs.start9.com${relative}?os=${this.version}${this.fragment()}` + return `https://docs.start9.com${relative}?version=${this.version}${this.fragment()}` }) constructor() {