NIFI-13176: (#8780)

- Relaxing the scale that triggers when details for components on the canvas are not rendered.

This closes #8780
This commit is contained in:
Matt Gilman 2024-05-08 18:27:02 -04:00 committed by GitHub
parent 6950290c24
commit 63cc1c3af6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;