mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 01:07:04 +02:00
fix(editor): Skip community node types request on preview mode (no-changelog) (#16876)
This commit is contained in:
parent
9ffca02016
commit
697a57f386
|
|
@ -366,7 +366,7 @@ export const useNodeTypesStore = defineStore(STORES.NODE_TYPES, () => {
|
|||
};
|
||||
|
||||
const fetchCommunityNodePreviews = async () => {
|
||||
if (!settingsStore.isCommunityNodesFeatureEnabled) {
|
||||
if (!settingsStore.isCommunityNodesFeatureEnabled || settingsStore.isPreviewMode) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user