Skip to content

Commit

Permalink
fix: wrong display class name
Browse files Browse the repository at this point in the history
  • Loading branch information
d1snin committed Dec 21, 2023
1 parent 9f13bb3 commit 251bfd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public fun Component.displayInlineFlex(print: Boolean = false, breakpoint: Break

private fun Component.display(value: String, print: Boolean, breakpoint: Breakpoint?) {
addCssClass(
("display-" + if (print) "print-" else "")
("d-" + if (print) "print-" else "")
.appendBreakpointWithValue(breakpoint, value)
)
}

0 comments on commit 251bfd2

Please sign in to comment.