Upgrade client dependencies (#12329)

* upgrade amplitude-js to v6

* upgrade svg-url-loader

* upgrade uuid

* upgrade validator
This commit is contained in:
Matteo Pagliazzi
2020-06-22 12:04:58 +02:00
committed by GitHub
parent ba16fa6854
commit b96a940d82
14 changed files with 106 additions and 52 deletions

View File

@@ -73,7 +73,7 @@
<script>
// import clone from 'lodash/clone';
import draggable from 'vuedraggable';
import uuid from 'uuid';
import { v4 as uuid } from 'uuid';
import positiveIcon from '@/assets/svg/positive.svg';
import deleteIcon from '@/assets/svg/delete.svg';
@@ -128,7 +128,7 @@ export default {
}
const checkListItem = {
id: uuid.v4(),
id: uuid(),
text: newChecklistItemText,
completed: false,
};