mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Adjust default zoom level in new canvas (no-changelog) (#10469)
This commit is contained in:
@@ -269,7 +269,8 @@ function emitWithLastSelectedNode(emitFn: (id: string) => void) {
|
||||
* View
|
||||
*/
|
||||
|
||||
const zoom = ref(1);
|
||||
const defaultZoom = 1;
|
||||
const zoom = ref(defaultZoom);
|
||||
|
||||
function onClickPane(event: MouseEvent) {
|
||||
const bounds = viewportRef.value?.getBoundingClientRect() ?? { left: 0, top: 0 };
|
||||
@@ -282,7 +283,7 @@ function onClickPane(event: MouseEvent) {
|
||||
}
|
||||
|
||||
async function onFitView() {
|
||||
await fitView({ maxZoom: 1.2, padding: 0.2 });
|
||||
await fitView({ maxZoom: defaultZoom, padding: 0.2 });
|
||||
}
|
||||
|
||||
async function onZoomTo(zoomLevel: number) {
|
||||
@@ -298,7 +299,7 @@ async function onZoomOut() {
|
||||
}
|
||||
|
||||
async function onResetZoom() {
|
||||
await onZoomTo(1);
|
||||
await onZoomTo(defaultZoom);
|
||||
}
|
||||
|
||||
function onViewportChange(viewport: ViewportTransform) {
|
||||
|
||||
Reference in New Issue
Block a user