mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-13 10:57:49 +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();
|
||||
entitySets.forEach(entities => {
|
||||
entities.forEach(entity => allEntities.add(entity));
|
||||
entities.forEach(entity => allEntities.add(entity.toUpperCase()));
|
||||
});
|
||||
|
||||
// Data types
|
||||
@@ -297,4 +297,4 @@ export async function runAudit() {
|
||||
}
|
||||
|
||||
return firstAuditReport;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user