mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 22:50:21 +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
|
||||||
@@ -297,4 +297,4 @@ export async function runAudit() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return firstAuditReport;
|
return firstAuditReport;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user