Collections #383

Merged
jessopb merged 20 commits from collections into master 2021-06-08 17:51:49 +02:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit bcd8fd1005 - Show all commits

2
dist/bundle.es.js vendored
View file

@ -4407,7 +4407,7 @@ function doCollectionPublishUpdate(options) {
const updateParams = { const updateParams = {
bid: creditsToString(options.bid), bid: creditsToString(options.bid),
title: options.title, title: options.title,
thumbnail_url: options.thumbnailUrl, thumbnail_url: options.thumbnail_url,
description: options.description, description: options.description,
tags: [], tags: [],
languages: options.languages || [], languages: options.languages || [],

View file

@ -809,7 +809,7 @@ export function doCollectionPublishUpdate(options: {
bid?: string, bid?: string,
blocking?: true, blocking?: true,
title?: string, title?: string,
thumbnailUrl?: string, thumbnail_url?: string,
description?: string, description?: string,
claim_id: string, claim_id: string,
tags?: Array<Tag>, tags?: Array<Tag>,
@ -836,7 +836,7 @@ export function doCollectionPublishUpdate(options: {
} = { } = {
bid: creditsToString(options.bid), bid: creditsToString(options.bid),
title: options.title, title: options.title,
thumbnail_url: options.thumbnailUrl, thumbnail_url: options.thumbnail_url,
description: options.description, description: options.description,
tags: [], tags: [],
languages: options.languages || [], languages: options.languages || [],