update uuid import in specs

This commit is contained in:
William Welling
2021-11-17 22:29:14 -06:00
parent b0ee227918
commit 0b99ce3211
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import { isUndefined } from '../../shared/empty.util';
import * as uuidv4 from 'uuid/v4';
import { v4 as uuidv4 } from 'uuid';
import { MetadataMap, MetadataValue, MetadataValueFilter, MetadatumViewModel } from './metadata.models';
import { Metadata } from './metadata.utils';

View File

@@ -6,7 +6,7 @@ import {
} from './metadata-representation.decorator';
import { MetadataRepresentationType } from '../../core/shared/metadata-representation/metadata-representation.model';
import { Context } from '../../core/shared/context.model';
import * as uuidv4 from 'uuid/v4';
import { v4 as uuidv4 } from 'uuid';
import { environment } from '../../../environments/environment';
let ogEnvironmentThemes;