[Bug] fix some UI friction from imports (#6139)

* fix some UI friction from imports

* add test

* console

* Jon's comments
This commit is contained in:
Kurt Hutten
2025-04-04 19:38:53 +11:00
committed by GitHub
parent 45e5b25cda
commit f1e95156ea
5 changed files with 174 additions and 2 deletions

View File

@ -469,3 +469,7 @@ export function binaryToUuid(
hexValues.slice(10, 16).join(''),
].join('-')
}
export function getModuleId(sourceRange: SourceRange) {
return sourceRange[2]
}