Skip to content

Commit

Permalink
fix: incorrect BootstrapIconsClasses and BootstrapClasses behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
d1snin committed Jan 5, 2024
1 parent 614a849 commit e7b972f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ public class BootstrapIconsPlugin : KwebPlugin() {

public val bootstrapIconsPlugin: BootstrapIconsPlugin get() = BootstrapIconsPlugin()

public val bootstrapIcons: BootstrapIconsClasses = BootstrapIconsClasses()
public val bootstrapIcons: BootstrapIconsClasses get() = BootstrapIconsClasses()
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ public class BootstrapPlugin : KwebPlugin() {

public val bootstrapPlugin: BootstrapPlugin get() = BootstrapPlugin()

public val bootstrap: BootstrapClasses = BootstrapClasses()
public val bootstrap: BootstrapClasses get() = BootstrapClasses()

0 comments on commit e7b972f

Please sign in to comment.