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(
259259const DEFAULT_HAT_CLASS = "hat default" ;
260260const classesMap = {
261261 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"
265272} ;
266273
267274function getDecorationClass ( key : keyof typeof classesMap ) : string {
268- return classesMap [ key ] || DEFAULT_HAT_CLASS ;
275+ return classesMap [ key ] ;
269276}
270277
271278
You can’t perform that action at this time.
0 commit comments