We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1623098 + 5e44318 commit 72acf9eCopy full SHA for 72acf9e
contentcuration/contentcuration/frontend/channelEdit/components/edit/DetailsTabView.vue
@@ -365,6 +365,7 @@
365
<script>
366
367
import difference from 'lodash/difference';
368
+ import get from 'lodash/get';
369
import intersection from 'lodash/intersection';
370
import uniq from 'lodash/uniq';
371
import { mapGetters, mapActions } from 'vuex';
@@ -818,7 +819,7 @@
818
819
) {
820
return this.diffTracker[node.id].extra_fields[key];
821
}
- return node.extra_fields[key] || defaultValue;
822
+ return get(node.extra_fields, key, defaultValue);
823
})
824
);
825
return getValueFromResults(results);
0 commit comments