File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
editors/vscode/fixtures/fixall_with_code_actions_on_save Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 2424
2525 // Handle different operation types
2626 switch (op) {
27- case 'add': {if (path.match(/^\/references\/\d+$/)) {
27+ case 'add': {
28+ // Special handling for references
29+ if (path.match(/^\/references\/\d+$/)) {
2830 if (value && typeof value === 'object' && 'key' in value) {
2931 summaryItems.push({
3032 label: 'References.' + value.key,
4850 break;
4951 }
5052
51- case 'replace': {if (path === '/version') return;
53+ case 'replace': {
54+ // Skip version changes as we display them separately
55+ if (path === '/version') return;
56+
5257 summaryItems.push({
5358 label: displayPath,
5459 displayValue: <span className='text-blue-600 font-medium'>Updated</span>
You can’t perform that action at this time.
0 commit comments