config-editor-base 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -370,6 +370,12 @@ var publicSchemaFiles = function publicSchemaFiles(selectedConfig, schemaAry, co
370
370
  return e.includes(selectedConfig.substr(7, 5));
371
371
  });
372
372
 
373
+ if (!deviceType.includes("GNSS")) {
374
+ schemaAryFiltered = schemaAryFiltered.filter(function (e) {
375
+ return !e.includes("GNSS");
376
+ });
377
+ }
378
+
373
379
  if (deviceType.includes("CANedge")) {
374
380
  schemaAryFiltered = schemaAryFiltered.filter(function (e) {
375
381
  return e.includes(deviceType);