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:
authorDavid Tsay <3614296+davetsay@users.noreply.github.com>2022-10-22 02:45:52 +0300
committerGitHub <noreply@github.com>2022-10-22 02:45:52 +0300
commitfeba5f6d3bed6518ecc12706677e9f4e1ccc9b92 (patch)
treec991f3ecb8f16c17faead34e54c3e770be56f873
parent4357d35f4a9aa6cb65d57fd35a59f3b76b6599f5 (diff)
use full identifier instead of key (#5891)
-rw-r--r--src/plugins/formActions/CreateAction.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/formActions/CreateAction.js b/src/plugins/formActions/CreateAction.js
index 796b3557d..aa42a611d 100644
--- a/src/plugins/formActions/CreateAction.js
+++ b/src/plugins/formActions/CreateAction.js
@@ -107,7 +107,7 @@ export default class CreateAction extends PropertiesAction {
}
const url = '#/browse/' + objectPath
- .map(object => object && this.openmct.objects.makeKeyString(object.identifier.key))
+ .map(object => object && this.openmct.objects.makeKeyString(object.identifier))
.reverse()
.join('/');