File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
packages/test-case-component/src Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -259,13 +259,20 @@ function isPositionRange(
259
259
const DEFAULT_HAT_CLASS = "hat default" ;
260
260
const classesMap = {
261
261
default : DEFAULT_HAT_CLASS ,
262
- pendingDelete : "decoration pendingDeleteBackground" ,
263
- referenced : "decoration referencedBackground" ,
264
- selection : "selection"
262
+ pendingDelete : "decoration pendingDelete" ,
263
+ referenced : "decoration referenced" ,
264
+ selection : "selection" ,
265
+ pendingModification0 : "decoration pendingModification0" ,
266
+ pendingModification1 : "decoration pendingModification1" ,
267
+ justAdded : "decoration justAdded" ,
268
+ highlight0 : "decoration highlight0" ,
269
+ highlight1 : "decoration highlight1" ,
270
+ sourceMark : "sourceMark" ,
271
+ thatMark : "thatMark"
265
272
} ;
266
273
267
274
function getDecorationClass ( key : keyof typeof classesMap ) : string {
268
- return classesMap [ key ] || DEFAULT_HAT_CLASS ;
275
+ return classesMap [ key ] ;
269
276
}
270
277
271
278
You can’t perform that action at this time.
0 commit comments