mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 06:58:56 +00:00
Fix #7113. IfcTester webapp should use uppercase entity names
This commit is contained in:
@@ -33,7 +33,7 @@ export async function preloadAutocompletions() {
|
|||||||
);
|
);
|
||||||
const allEntities = new Set();
|
const allEntities = new Set();
|
||||||
entitySets.forEach(entities => {
|
entitySets.forEach(entities => {
|
||||||
entities.forEach(entity => allEntities.add(entity));
|
entities.forEach(entity => allEntities.add(entity.toUpperCase()));
|
||||||
});
|
});
|
||||||
|
|
||||||
// Data types
|
// Data types
|
||||||
|
|||||||
Reference in New Issue
Block a user