diff --git a/ui/component/txoList/view.jsx b/ui/component/txoList/view.jsx index 8cda2db03..b1f0c432f 100644 --- a/ui/component/txoList/view.jsx +++ b/ui/component/txoList/view.jsx @@ -103,6 +103,8 @@ function TxoList(props: Props) { params[TXO.TX_TYPE] = currentUrlParams.type; } else if (currentUrlParams.type === TXO.PUBLISH) { params[TXO.TX_TYPE] = TXO.STREAM; + } else if (currentUrlParams.type === TXO.COLLECTION) { + params[TXO.TX_TYPE] = currentUrlParams.type; } } if (currentUrlParams.active) { diff --git a/ui/constants/txo_list.js b/ui/constants/txo_list.js index b702f3438..20a02f75a 100644 --- a/ui/constants/txo_list.js +++ b/ui/constants/txo_list.js @@ -11,7 +11,8 @@ export const SUPPORT = 'support'; export const CHANNEL = 'channel'; export const PUBLISH = 'publish'; export const REPOST = 'repost'; -export const DROPDOWN_TYPES = [ALL, SENT, RECEIVED, SUPPORT, CHANNEL, PUBLISH, REPOST]; +export const COLLECTION = 'collection'; +export const DROPDOWN_TYPES = [ALL, SENT, RECEIVED, SUPPORT, CHANNEL, PUBLISH, REPOST, COLLECTION]; // dropdown subtypes export const TIP = 'tip'; export const PURCHASE = 'purchase';