feat(editor): Implement some quick improvements on NDV in canvas experiment (no-changelog) (#16717)

Co-authored-by: Milorad FIlipović <milorad@n8n.io>
This commit is contained in:
Suguru Inoue
2025-06-30 11:04:11 +02:00
committed by GitHub
parent 5392efaf71
commit eb138ecf8d
14 changed files with 424 additions and 147 deletions

View File

@@ -0,0 +1,5 @@
import type { INodeProperties } from 'n8n-workflow';
export function shouldShowParameter(item: INodeProperties): boolean {
return item.name.match(/resource|authentication|operation/i) === null;
}