Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland committed Sep 24, 2024
1 parent a8b4dc3 commit 6b726bd
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions js/src/forum/components/SolutionSearchItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,9 @@ export default class SolutionSearchItem extends Component<SolutionSearchItemAttr
viewItems(): ItemList<Mithril.Children> {
const items = new ItemList<Mithril.Children>();

items.add(
'tags',
<div className="SolutionSearchResult-tags">
{tagsLabel(this.tags)}
</div>,
100);
items.add('tags', <div className="SolutionSearchResult-tags">{tagsLabel(this.tags)}</div>, 100);

items.add(
'discussion-title',
<div className="DiscussionSearchResult-title">
{highlight(this.discussionTitle(), this.query)}
</div>,
90);
items.add('discussion-title', <div className="DiscussionSearchResult-title">{highlight(this.discussionTitle(), this.query)}</div>, 90);

!!this.mostRelevantPost &&
items.add(
Expand Down

0 comments on commit 6b726bd

Please sign in to comment.