mirror of
https://github.com/nasa/openmct.git
synced 2025-01-19 11:17:04 +00:00
[API] Observer path was accessing object key incorrectly
This commit is contained in:
parent
976333d7f7
commit
3544caf4be
@ -41,7 +41,7 @@ define([
|
|||||||
}
|
}
|
||||||
|
|
||||||
function qualifiedEventName(object, eventName) {
|
function qualifiedEventName(object, eventName) {
|
||||||
return [object.key.identifier, eventName].join(':');
|
return [object.identifier.key, eventName].join(':');
|
||||||
}
|
}
|
||||||
|
|
||||||
MutableObject.prototype.stopListening = function () {
|
MutableObject.prototype.stopListening = function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user