From 50b642fabe2f0f76512e272b5b6306f54da8b46a Mon Sep 17 00:00:00 2001 From: Michael Rogers Date: Thu, 2 Jun 2022 13:42:11 -0500 Subject: [PATCH] Updated the dependency injection syntax to use v4 instead of default (#5279) --- example/generator/WorkerInterface.js | 2 +- src/plugins/objectMigration/Migrations.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/generator/WorkerInterface.js b/example/generator/WorkerInterface.js index 2ddb3ee181..1573800fff 100644 --- a/example/generator/WorkerInterface.js +++ b/example/generator/WorkerInterface.js @@ -23,7 +23,7 @@ define([ 'uuid' ], function ( - uuid + { v4: uuid } ) { function WorkerInterface(openmct) { // eslint-disable-next-line no-undef diff --git a/src/plugins/objectMigration/Migrations.js b/src/plugins/objectMigration/Migrations.js index 8bf5d445af..46bd8f3831 100644 --- a/src/plugins/objectMigration/Migrations.js +++ b/src/plugins/objectMigration/Migrations.js @@ -23,7 +23,7 @@ define([ 'uuid' ], function ( - uuid + { v4: uuid } ) { return function Migrations(openmct) { function getColumnNameKeyMap(domainObject) {