File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
plugins/card-resources/src/components Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 93
93
const _class = hierarchy .getClass (desc )
94
94
if (_class .label === undefined ) continue
95
95
if (_class .kind !== ClassifierKind .CLASS ) continue
96
+ if ((_class as MasterTag ).removed === true ) continue
96
97
added .add (desc )
97
98
toAdd .push (_class )
98
99
}
Original file line number Diff line number Diff line change 35
35
const desc = hierarchy .getDescendants (_class )
36
36
for (const clazz of desc ) {
37
37
const cls = hierarchy .getClass (clazz )
38
- if (cls .extends === _class && ! cls .hidden && kind === cls .kind && cls .label !== undefined ) {
38
+ if (
39
+ cls .extends === _class &&
40
+ ! cls .hidden &&
41
+ kind === cls .kind &&
42
+ cls .label !== undefined &&
43
+ (cls as MasterTag ).removed !== true
44
+ ) {
39
45
result .push (clazz )
40
46
}
41
47
}
You can’t perform that action at this time.
0 commit comments