This is an automated email from the ASF dual-hosted git repository.
scottyaslan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 63cc1c3af6 NIFI-13176: (#8780)
63cc1c3af6 is described below
commit 63cc1c3af6309a47c6b45cb6a6b295505304a0f5
Author: Matt Gilman <[email protected]>
AuthorDate: Wed May 8 18:27:02 2024 -0400
NIFI-13176: (#8780)
- Relaxing the scale that triggers when details for components on the
canvas are not rendered.
This closes #8780
---
.../nifi/src/app/pages/flow-designer/service/canvas-view.service.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/service/canvas-view.service.ts
b/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/service/canvas-view.service.ts
index 7cf090f7b1..4488516e08 100644
---
a/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/service/canvas-view.service.ts
+++
b/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/service/canvas-view.service.ts
@@ -39,7 +39,7 @@ export class CanvasView {
private static readonly INCREMENT: number = 1.2;
private static readonly MAX_SCALE: number = 8;
private static readonly MIN_SCALE: number = 0.2;
- private static readonly MIN_SCALE_TO_RENDER: number = 0.6;
+ private static readonly MIN_SCALE_TO_RENDER: number = 0.4;
private svg: any;
private canvas: any;