prefer title for collection name on resolve
This commit is contained in:
parent
63946a0a6d
commit
d3c045b037
1 changed files with 6 additions and 7 deletions
|
@ -40,11 +40,9 @@ export const doLocalCollectionCreate = (
|
|||
});
|
||||
};
|
||||
|
||||
export const doCollectionDelete = (
|
||||
id: string,
|
||||
colKey: ?string = undefined,
|
||||
keepLocal?: boolean
|
||||
) => (dispatch: Dispatch) => {
|
||||
export const doCollectionDelete = (id: string, colKey: ?string = undefined) => (
|
||||
dispatch: Dispatch
|
||||
) => {
|
||||
return dispatch({
|
||||
type: ACTIONS.COLLECTION_DELETE,
|
||||
data: {
|
||||
|
@ -219,7 +217,8 @@ export const doFetchItemsInCollections = (
|
|||
const claim = makeSelectClaimForClaimId(collectionId)(stateAfterClaimSearch);
|
||||
|
||||
const editedCollection = makeSelectEditedCollectionForId(collectionId)(stateAfterClaimSearch);
|
||||
const { name, timestamp } = claim || {};
|
||||
const { name, timestamp, value } = claim || {};
|
||||
const { title } = value;
|
||||
const valueTypes = new Set();
|
||||
const streamTypes = new Set();
|
||||
|
||||
|
@ -242,7 +241,7 @@ export const doFetchItemsInCollections = (
|
|||
newCollectionItemsById[collectionId] = {
|
||||
items,
|
||||
id: collectionId,
|
||||
name: name,
|
||||
name: title || name,
|
||||
itemCount: claim.value.claims.length,
|
||||
type: isPlaylist ? 'playlist' : 'collection',
|
||||
updatedAt: timestamp,
|
||||
|
|
Loading…
Reference in a new issue