mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(web): 🐛 fix license not showing in info drawer
This commit is contained in:
parent
df859318d5
commit
77e87a2f15
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ export const ListInfoDrawer = (props: RouteComponentProps & Props) => {
|
|||
list?.iso6391s.includes(l.iso6391)
|
||||
);
|
||||
const listTags = props.tags.filter((t) => list?.tagIds.includes(t.id));
|
||||
const listLicense = props.licenses.find((l) => l.id === list?.id);
|
||||
const listLicense = props.licenses.find((l) => l.id === list?.licenseId);
|
||||
const listSyntaxes = props.syntaxes.filter((s) =>
|
||||
list?.syntaxIds.includes(s.id)
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue