We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf56c72 commit 2253d42Copy full SHA for 2253d42
1 file changed
src/lib/Mappings.ts
@@ -101,10 +101,10 @@ export default class Mappings {
101
}
102
103
static mappable(mappingsSnapshot: MappingSnapshot, item1: TItem<TItemLocation>, item2: TItem<TItemLocation>) : boolean {
104
- if (Mappings.mapId(mappingsSnapshot, item1, item2.location) === item2.id) {
+ if (String(Mappings.mapId(mappingsSnapshot, item1, item2.location)) === String(item2.id)) {
105
return true
106
107
- if (Mappings.mapId(mappingsSnapshot, item2, item1.location) === item1.id) {
+ if (String(Mappings.mapId(mappingsSnapshot, item2, item1.location)) === String(item1.id)) {
108
109
110
return false
0 commit comments