Skip to content

Commit

Permalink
fix: tips tricks tutorials references (#963)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpoy committed Feb 10, 2023
2 parents ee98ffd + 0de2cb5 commit 46005b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Frontend/src/app/pages/home/home.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ <h2>{{ 'pages.home.errors.noRecipes.title' | translate }}</h2>

<br /><br />

<a href="/#/tips-tricks-tutorials">{{ 'pages.home.errors.noRecipes.message7' | translate }}</a>
<a href="https://docs.recipesage.com">{{ 'pages.home.errors.noRecipes.message7' | translate }}</a>
</p>
</ion-label>
</null-state>
Expand Down
2 changes: 1 addition & 1 deletion WebExtension/src/browser_action/browser_action.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ <h2>Login</h2>
<img id="tutorial-logo" /><br />
<h2>Tutorial</h2>
</div>
To view a full version of this tutorial, <a href="https://recipesage.com/#/tips-tricks-tutorials" target="_blank">click here</a>
To view a full version of this tutorial, <a href="https://docs.recipesage.com" target="_blank">click here</a>
<br />
<br />

Expand Down
2 changes: 1 addition & 1 deletion WebExtension/src/inject/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ if (window[extensionContainerId]) {

let tipText = document.createElement('a');
tipText.innerText = "Open Tutorial";
tipText.href = "https://recipesage.com/#/tips-tricks-tutorials";
tipText.href = "https://docs.recipesage.com";
tipText.target = "_blank";
tipContainer.appendChild(tipText);

Expand Down
2 changes: 1 addition & 1 deletion WebExtension/src/settings/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h2>RecipeSage Browser Extension How-To</h2>
<br />
<div>
This is a partial tutorial. To see the complete tutorial,
<a href="https://recipesage.com/#/tips-tricks-tutorials" target="_blank">click here</a>.<br />
<a href="https://docs.recipesage.com" target="_blank">click here</a>.<br />
To start, click the RecipeSage icon next to the address bar. If you're not logged in, a popup will prompt you to enter
your RecipeSage username and password.
<br />
Expand Down

0 comments on commit 46005b5

Please sign in to comment.