We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8383e commit 1b2fa4fCopy full SHA for 1b2fa4f
src/ifctester/webapp/src/modules/api/api.svelte.js
@@ -33,7 +33,7 @@ export async function preloadAutocompletions() {
33
);
34
const allEntities = new Set();
35
entitySets.forEach(entities => {
36
- entities.forEach(entity => allEntities.add(entity));
+ entities.forEach(entity => allEntities.add(entity.toUpperCase()));
37
});
38
39
// Data types
@@ -297,4 +297,4 @@ export async function runAudit() {
297
}
298
299
return firstAuditReport;
300
-}
+}
0 commit comments