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.
package/dist/index.js CHANGED
@@ -373,6 +373,12 @@ var publicSchemaFiles = function publicSchemaFiles(selectedConfig, schemaAry, co
373
373
  return e.includes(selectedConfig.substr(7, 5));
374
374
  });
375
375
 
376
+ if (!deviceType.includes("GNSS")) {
377
+ schemaAryFiltered = schemaAryFiltered.filter(function (e) {
378
+ return !e.includes("GNSS");
379
+ });
380
+ }
381
+
376
382
  if (deviceType.includes("CANedge")) {
377
383
  schemaAryFiltered = schemaAryFiltered.filter(function (e) {
378
384
  return e.includes(deviceType);