1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-14 17:15:08 +01:00

filter in frontend

This commit is contained in:
diminator 2015-09-22 12:20:14 +02:00
parent a4fe0417c3
commit 5f98f65842

View File

@ -37,11 +37,17 @@ let IkonotvPieceList = React.createClass({
accordionListItemType={IkonotvAccordionListItem}
filterParams={[{
label: getLangText('Show works I have'),
items: [{
key: 'acl_loaned',
label: getLangText('loaned to IkonoTV')
}]
}]}/>
items: [
{
key: 'submitted',
label: getLangText('submitted')
},
{
key: 'accepted',
label: getLangText('loaned')
}
]
}]}/>
</div>
);
}