Skip to content

Commit 1b2fa4f

Browse files
committed
Fix #7113. IfcTester webapp should use uppercase entity names
1 parent 2d8383e commit 1b2fa4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ifctester/webapp/src/modules/api/api.svelte.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export async function preloadAutocompletions() {
3333
);
3434
const allEntities = new Set();
3535
entitySets.forEach(entities => {
36-
entities.forEach(entity => allEntities.add(entity));
36+
entities.forEach(entity => allEntities.add(entity.toUpperCase()));
3737
});
3838

3939
// Data types
@@ -297,4 +297,4 @@ export async function runAudit() {
297297
}
298298

299299
return firstAuditReport;
300-
}
300+
}

0 commit comments

Comments
 (0)