mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 06:08:11 +00:00
[Style] Brace after if criteria
This commit is contained in:
@ -44,7 +44,7 @@ define(
|
|||||||
function RootModelProvider(roots, $q, $log) {
|
function RootModelProvider(roots, $q, $log) {
|
||||||
// Pull out identifiers to used as ROOT's, while setting locations.
|
// Pull out identifiers to used as ROOT's, while setting locations.
|
||||||
var ids = roots.map(function (root) {
|
var ids = roots.map(function (root) {
|
||||||
if (!root.model) root.model = {};
|
if (!root.model) { root.model = {}; }
|
||||||
root.model.location = 'ROOT';
|
root.model.location = 'ROOT';
|
||||||
return root.id;
|
return root.id;
|
||||||
}),
|
}),
|
||||||
|
Reference in New Issue
Block a user