Merge branch 'hotfix/3.9.1' into develop

This commit is contained in:
Mo Bitar
2021-11-10 14:33:47 -06:00
3 changed files with 10 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ export type PurchaseFlowWrapperProps = {
}; };
export const getPurchaseFlowUrl = async (application: WebApplication): Promise<string | undefined> => { export const getPurchaseFlowUrl = async (application: WebApplication): Promise<string | undefined> => {
const currentUrl = window.location.href; const currentUrl = window.location.origin;
const successUrl = isDesktopApplication() ? `standardnotes://` : currentUrl; const successUrl = isDesktopApplication() ? `standardnotes://` : currentUrl;
if (application.noAccount()) { if (application.noAccount()) {
return `${window._purchase_url}/offline?&success_url=${successUrl}`; return `${window._purchase_url}/offline?&success_url=${successUrl}`;

View File

@@ -33,6 +33,14 @@
&:hover .sk-app-bar-item-column { &:hover .sk-app-bar-item-column {
border-bottom: 2px solid var(--sn-stylekit-info-color); border-bottom: 2px solid var(--sn-stylekit-info-color);
} }
.sk-app-bar-item-column {
width: 100%;
* {
width: 100%;
}
}
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "standard-notes-web", "name": "standard-notes-web",
"version": "3.9.0", "version": "3.9.1",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"repository": { "repository": {
"type": "git", "type": "git",