Skip to content

Commit

Permalink
improvement(snap), show the full lane-id in the output (#7358)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfirst authored May 5, 2023
1 parent 710071a commit a041cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scopes/component/snapping/snapping.main.runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit a041cdd

Please sign in to comment.