Skip to content

Commit

Permalink
style(olcs): Add missing semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaofengZeng committed Nov 17, 2024
1 parent 3e49023 commit d549b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/olcs/VectorSynchronizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export default class VectorSynchronizer extends olcsAbstractSynchronizer<VectorL
}));

olListenKeys.push(source.on('changefeature', (e: VectorSourceEvent) => {
const feature = e.feature
const feature = e.feature;
console.assert(feature);
const skip = feature.get('olcs_skip');
if (skip) {
Expand Down

0 comments on commit d549b83

Please sign in to comment.