Skip to content
Snippets Groups Projects
Commit 054b4faa authored by Imre Toth's avatar Imre Toth
Browse files

Merge branch 'ICSHWI-8011_Eliminating_unnecessary_fields' into 'master'

ICSHWI-8011: Eliminating unnecessary fields from UI

See merge request ccce/dev/ccdb-ui-prototype!74
parents ae66d58a dd14038a
No related branches found
No related tags found
1 merge request!74ICSHWI-8011: Eliminating unnecessary fields from UI
Pipeline #98185 passed
...@@ -82,9 +82,7 @@ defineFeature(feature, (test) => { ...@@ -82,9 +82,7 @@ defineFeature(feature, (test) => {
createdAt: "2021-08-04T14:35:41.037+00:00", createdAt: "2021-08-04T14:35:41.037+00:00",
namingName: "TEST-IOC-1", namingName: "TEST-IOC-1",
sourceUrl: "http://test-ioc.git", sourceUrl: "http://test-ioc.git",
sourceVersion: null, sourceVersion: null
epicsVersion: null,
requireVersion: null
}, },
activeDeployment: null, activeDeployment: null,
hasLocalCommits: null, hasLocalCommits: null,
...@@ -108,9 +106,7 @@ defineFeature(feature, (test) => { ...@@ -108,9 +106,7 @@ defineFeature(feature, (test) => {
createdAt: "2021-08-04T14:35:41.037+00:00", createdAt: "2021-08-04T14:35:41.037+00:00",
namingName: "TEST-IOC-1", namingName: "TEST-IOC-1",
sourceUrl: "http://test-ioc.git", sourceUrl: "http://test-ioc.git",
sourceVersion: null, sourceVersion: null
epicsVersion: null,
requireVersion: null
}, },
activeDeployment: null, activeDeployment: null,
hasLocalCommits: null, hasLocalCommits: null,
......
...@@ -162,9 +162,7 @@ export function unpackIOC(ioc) { ...@@ -162,9 +162,7 @@ export function unpackIOC(ioc) {
return { return {
git: v.sourceUrl, git: v.sourceUrl,
version: v.sourceVersion, version: v.sourceVersion,
namingName: v.namingName, namingName: v.namingName }
epicsVersion: v.epicsVersion,
requireVersion: v.requireVersion }
}; };
const subset = getSubset(inflated); const subset = getSubset(inflated);
unpackedIOC = Object.assign(unpackedIOC, subset); unpackedIOC = Object.assign(unpackedIOC, subset);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment