mirror of
https://github.com/flarum/framework.git
synced 2025-02-23 21:23:11 +08:00
Remove unused color variable
This commit is contained in:
parent
95b2b80d17
commit
69057183e0
@ -75,14 +75,10 @@ export default class TagsPage extends Component {
|
||||
|
||||
{cloud.length ? (
|
||||
<div className="TagCloud">
|
||||
{cloud.map(tag => {
|
||||
const color = tag.color();
|
||||
|
||||
return [
|
||||
tagLabel(tag, {link: true}),
|
||||
' '
|
||||
];
|
||||
})}
|
||||
{cloud.map(tag => [
|
||||
tagLabel(tag, {link: true}),
|
||||
' ',
|
||||
])}
|
||||
</div>
|
||||
) : ''}
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user