From 3a55caabc51fd031941c4548ce584fcf79696811 Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Thu, 31 Oct 2024 14:22:20 -0700 Subject: [PATCH] Always point to last GA Zed docs for now (#3162) --- apps/zui/src/config/links.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/zui/src/config/links.ts b/apps/zui/src/config/links.ts index 97f22a40b..7c1a57c32 100644 --- a/apps/zui/src/config/links.ts +++ b/apps/zui/src/config/links.ts @@ -3,7 +3,7 @@ import pkg from "../../package.json" const currentZedTag = pkg.devDependencies.zed.split("#")[1] || "main" const zedDocsTag = currentZedTag.startsWith("v") ? currentZedTag.replace(/\.\d+$/, ".0") - : "next" + : "v1.18.0" // Change back to "next" when we make the zed->super transition export default { ZED_DOCS_ROOT: `https://zed.brimdata.io/docs/${zedDocsTag}/commands/zed`,