Skip to content

Commit

Permalink
fix page links
Browse files Browse the repository at this point in the history
  • Loading branch information
Treetrain1 authored Feb 23, 2024
1 parent 318380f commit e7c7993
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ class WikiPage(val title: String, val link: String)

@Composable
private fun PageItem(page: WikiPage) {
Link(page.link, page.title, modifier = Modifier.whiteSpace(WhiteSpace.NoWrap), variant = UncoloredLinkVariant)
Link(
page.link,
page.title,
modifier = Modifier.whiteSpace(WhiteSpace.NoWrap),
variant = UncoloredLinkVariant,
autoPrefix = false,
)
}

@Composable
Expand Down

0 comments on commit e7c7993

Please sign in to comment.