mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Adjust default zoom level in new canvas (no-changelog) (#10469)
This commit is contained in:
parent
6a0f2ca96b
commit
aa4404ed79
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue