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 24
24
25
25
// Handle different operation types
26
26
9D21
switch (op) {
27
- case 'add': {if (path.match(/^\/references\/\d+$/)) {
27
+ case 'add': {
28
+ // Special handling for references
29
+ if (path.match(/^\/references\/\d+$/)) {
28
30
if (value && typeof value === 'object' && 'key' in value) {
29
31
summaryItems.push({
30
32
label: 'References.' + value.key,
48
50
break;
49
51
}
50
52
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
+
52
57
summaryItems.push({
53
58
label: displayPath,
54
59
displayValue: <span className='text-blue-600 font-medium'>Updated</span>
You can’t perform that action at this time.
0 commit comments