Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
"slugify": "1.6.6",
"url-template": "3.1.1",
"util": "0.12.5",
"uuid": "11.0.2",
"v-resize-observer": "2.1.0",
"vee-validate": "3.4.15",
"vue": "2.7.15",
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/activity/content/Storyboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ import ContentNodeCard from '@/components/activity/content/layout/ContentNodeCar
import { contentNodeMixin } from '@/mixins/contentNodeMixin.js'
import ApiSortable from '@/components/form/api/ApiSortable.vue'

import { v4 as uuidv4 } from 'uuid'
import { errorToMultiLineToast } from '@/components/toast/toasts'
import StoryboardSortable from '@/components/activity/content/storyboard/StoryboardSortable.vue'

Expand Down Expand Up @@ -134,7 +133,7 @@ export default {
async addSection() {
this.isAdding = true

const sectionId = uuidv4()
const sectionId = self.crypto.randomUUID()
try {
// TODO: consider adding item to ApiSortable eagerly (should be easy, now that uuid is generated locally)
await this.contentNode.$patch({
Expand Down
Loading