mirror of
https://github.com/nasa/openmct.git
synced 2025-06-23 01:18:57 +00:00
[Telemetry] Added 'name' as a telemetry datum attribute. Fixes #1099
This commit is contained in:
@ -37,9 +37,15 @@ define([
|
||||
} catch (e) {
|
||||
// TODO: Better formatting
|
||||
this.formatter = {
|
||||
parse: function (x) { return Number(x); },
|
||||
format: function (x) { return x; },
|
||||
validate: function (x) { return true; }
|
||||
parse: function (x) {
|
||||
return Number(x);
|
||||
},
|
||||
format: function (x) {
|
||||
return x;
|
||||
},
|
||||
validate: function (x) {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user