Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/inspector/details/Properties.vue')
-rw-r--r--src/ui/inspector/details/Properties.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui/inspector/details/Properties.vue b/src/ui/inspector/details/Properties.vue
index 2e2079ba7..148a2d3dd 100644
--- a/src/ui/inspector/details/Properties.vue
+++ b/src/ui/inspector/details/Properties.vue
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Open MCT, Copyright (c) 2014-2021, United States Government
+ * Open MCT, Copyright (c) 2014-2022, United States Government
* as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved.
*
@@ -166,7 +166,8 @@ export default {
}
return definition.form
- .map((field) => {
+ .filter(field => !field.hideFromInspector)
+ .map(field => {
let path = field.property;
if (typeof path === 'string') {
path = [path];