From a041cdd507cb813437dbfbbd7140b0130ecbdf71 Mon Sep 17 00:00:00 2001 From: David First Date: Fri, 5 May 2023 13:48:33 -0400 Subject: [PATCH] improvement(snap), show the full lane-id in the output (#7358) --- scopes/component/snapping/snapping.main.runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scopes/component/snapping/snapping.main.runtime.ts b/scopes/component/snapping/snapping.main.runtime.ts index 66388cfd67c2..87759abadc82 100644 --- a/scopes/component/snapping/snapping.main.runtime.ts +++ b/scopes/component/snapping/snapping.main.runtime.ts @@ -484,7 +484,7 @@ export class SnappingMain { snapResults.newComponents = newComponents; const currentLane = consumer.getCurrentLaneId(); - snapResults.laneName = currentLane.isDefault() ? null : currentLane.name; + snapResults.laneName = currentLane.isDefault() ? null : currentLane.toString(); await consumer.onDestroy(); await stagedConfig?.write(); // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!