compare scope when determining css conflicts (#134)
parent
3f07842da3
commit
c5b5c1b116
|
@ -44,7 +44,8 @@ export function getCssConflictDiagnostics(
|
|||
!Array.isArray(meta) &&
|
||||
!Array.isArray(otherMeta) &&
|
||||
equal(meta.context, otherMeta.context) &&
|
||||
equal(meta.pseudo, otherMeta.pseudo)
|
||||
equal(meta.pseudo, otherMeta.pseudo) &&
|
||||
meta.scope === otherMeta.scope
|
||||
)
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue