Skip to content

Commit 668b04f

Browse files
author
Ajit Kumar
committed
fix(load plugin page after publishing/updating)
1 parent 39e2a5b commit 668b04f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ window.onload = async () => {
2222
{ href: '/faqs', text: 'FAQs' },
2323
{ href: '/plugin-docs', text: 'Plugin Docs' },
2424
{ href: '/plugins', text: 'Plugins' },
25-
{ href: 'https://foxbiz.io', text: 'Foxbiz' },
25+
{ href: 'https://www.foxbiz.io', text: 'Foxbiz' },
2626
{ href: '/policy', text: 'Privacy policy' },
2727
{ href: '/terms', text: 'Terms of service' },
2828
{ href: '/user', text: $loginText, icon: 'person' },

client/pages/publishPlugin/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default async function PublishPlugin({ mode = 'publish', id }) {
108108
}
109109

110110
successText.value = 'Plugin published successfully.';
111-
Router.loadUrl(`/plugin/${data.id}`);
111+
Router.loadUrl(`/plugin/${pluginId.value}`);
112112
}
113113

114114
function onerror(error) {

0 commit comments

Comments
 (0)