mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(editor): Use base path in workflow preview component URL (#4560)
🐛 Fix for workflow preview component URL
This commit is contained in:
parent
536c834313
commit
db163b71b9
|
@ -14,7 +14,7 @@
|
|||
[$style.show]: this.showPreview,
|
||||
}"
|
||||
ref="preview_iframe"
|
||||
src="/workflows/demo"
|
||||
:src="`${rootStore.baseUrl}workflows/demo`"
|
||||
@mouseenter="onMouseEnter"
|
||||
@mouseleave="onMouseLeave"
|
||||
></iframe>
|
||||
|
@ -25,6 +25,8 @@
|
|||
import mixins from 'vue-typed-mixins';
|
||||
import { showMessage } from '@/components/mixins/showMessage';
|
||||
import { IWorkflowDb } from '../Interface';
|
||||
import { mapStores } from 'pinia';
|
||||
import { useRootStore } from '@/stores/n8nRootStore';
|
||||
|
||||
export default mixins(showMessage).extend({
|
||||
name: 'WorkflowPreview',
|
||||
|
@ -64,6 +66,9 @@ export default mixins(showMessage).extend({
|
|||
};
|
||||
},
|
||||
computed: {
|
||||
...mapStores(
|
||||
useRootStore,
|
||||
),
|
||||
showPreview(): boolean {
|
||||
return !this.loading &&
|
||||
(
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { STORES } from '@/constants';
|
||||
import { INodeUi, IRestApiContext, RootState } from '@/Interface';
|
||||
import { IRestApiContext, RootState } from '@/Interface';
|
||||
import { IDataObject } from 'n8n-workflow';
|
||||
import { defineStore } from 'pinia';
|
||||
import Vue from 'vue';
|
||||
|
|
Loading…
Reference in a new issue