Skip to content

Commit

Permalink
Fix the check vector diff outputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentao-Kuang committed Apr 11, 2024
1 parent 09567b6 commit d67684a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/cli/config/config.diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export async function diffVectorUpdate(
// Find layer updates
for (const l of ldsLayers) {
const existingLayer = existingLdsLayers.get(l['lds:id']);
const change = getVectorChanges(l, undefined);
const change = getVectorChanges(l, existingLayer);
if (change != null) changes.push(change);
if (existingLayer != null) existingLdsLayers.delete(l['lds:id']);
}
Expand Down

0 comments on commit d67684a

Please sign in to comment.