Upgrade UUID module. (#682)

This commit is contained in:
Caleb
2017-10-18 11:02:16 -06:00
committed by Shawn Erquhart
parent 7dd8ca13c4
commit 024c43a8c8
4 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Autosuggest from 'react-autosuggest';
import uuid from 'uuid';
import uuid from 'uuid/v4';
import { Map } from 'immutable';
import { connect } from 'react-redux';
import { debounce } from 'lodash';
@ -30,7 +30,7 @@ class RelationControl extends Component {
constructor(props, ctx) {
super(props, ctx);
this.controlID = uuid.v4();
this.controlID = uuid();
this.didInitialSearch = false;
}