From 9dc40428afad117a888522c6e9b33f8b04dfd787 Mon Sep 17 00:00:00 2001 From: FancMa01 Date: Thu, 29 Aug 2024 09:14:06 -0600 Subject: [PATCH] Update guide link on header to open new user documentation site (#845) * Update guide link on header to open new user documentation site * update docs links in tour --- Tombolo/client-reactjs/src/App.js | 8 ++++---- Tombolo/client-reactjs/src/components/layout/Header.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Tombolo/client-reactjs/src/App.js b/Tombolo/client-reactjs/src/App.js index eb328e7f..04d70e4b 100644 --- a/Tombolo/client-reactjs/src/App.js +++ b/Tombolo/client-reactjs/src/App.js @@ -217,8 +217,8 @@ class App extends React.Component { - https://hpcc-systems.github.io/Tombolo/docs/Quick-Start/application + href="https://hpcc-systems.github.io/Tombolo/docs/User-Guide/application"> + https://hpcc-systems.github.io/Tombolo/docs/User-Guides/application

@@ -246,8 +246,8 @@ class App extends React.Component { - https://hpcc-systems.github.io/Tombolo/docs/Quick-Start/cluster + href="https://hpcc-systems.github.io/Tombolo/docs/User-Guides/cluster"> + https://hpcc-systems.github.io/Tombolo/docs/User-Guides/cluster

diff --git a/Tombolo/client-reactjs/src/components/layout/Header.js b/Tombolo/client-reactjs/src/components/layout/Header.js index 6cab6d4a..cf0155ea 100644 --- a/Tombolo/client-reactjs/src/components/layout/Header.js +++ b/Tombolo/client-reactjs/src/components/layout/Header.js @@ -363,7 +363,7 @@ class AppHeader extends Component { const helpMenuClick = (e) => { if (e.key == 1) { - window.open(process.env.PUBLIC_URL + '/Tombolo-User-Guide.pdf'); + window.open('https://hpcc-systems.github.io/Tombolo/'); } else if (e.key == 2) { this.openAboutModal(); }