From c75492018f4f591810d1f25d4f187038ab49d25e Mon Sep 17 00:00:00 2001 From: Johnny A <5891646+johnny243@users.noreply.github.com> Date: Fri, 29 Oct 2021 15:59:29 -0400 Subject: [PATCH 1/2] fix: svg icons not showing on footer section (#710) Co-authored-by: Johnny Almonte --- app/assets/stylesheets/_footer.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/_footer.scss b/app/assets/stylesheets/_footer.scss index 5b813b3e9..c3ecf8308 100644 --- a/app/assets/stylesheets/_footer.scss +++ b/app/assets/stylesheets/_footer.scss @@ -33,6 +33,14 @@ &:hover .sk-app-bar-item-column { border-bottom: 2px solid var(--sn-stylekit-info-color); } + + .sk-app-bar-item-column { + width: 100%; + + * { + width: 100%; + } + } } } From f28564e70823a9840e9ccbb991fd4b204d45b172 Mon Sep 17 00:00:00 2001 From: Mo Bitar Date: Wed, 10 Nov 2021 14:33:32 -0600 Subject: [PATCH 2/2] fix: success url should ignore params --- app/assets/javascripts/purchaseFlow/PurchaseFlowWrapper.tsx | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/purchaseFlow/PurchaseFlowWrapper.tsx b/app/assets/javascripts/purchaseFlow/PurchaseFlowWrapper.tsx index ecdeb1129..9deeec45d 100644 --- a/app/assets/javascripts/purchaseFlow/PurchaseFlowWrapper.tsx +++ b/app/assets/javascripts/purchaseFlow/PurchaseFlowWrapper.tsx @@ -11,7 +11,7 @@ export type PurchaseFlowWrapperProps = { }; export const getPurchaseFlowUrl = async (application: WebApplication): Promise => { - const currentUrl = window.location.href; + const currentUrl = window.location.origin; const successUrl = isDesktopApplication() ? `standardnotes://` : currentUrl; if (application.noAccount()) { return `${window._purchase_url}/offline?&success_url=${successUrl}`; diff --git a/package.json b/package.json index 4aa865fbb..7e9cf75b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "standard-notes-web", - "version": "3.9.0", + "version": "3.9.1", "license": "AGPL-3.0-or-later", "repository": { "type": "git",