Changelog
scoutbaR 0.2.5
Breaking change
- You can now pass icons as shiny tags (
icon("cogs")) inscout_action():
# old
scout_action(
id = 3,
icon = "house",
label = "3",
description = "3"
)
# now
scout_action(
id = 3,
icon = icon("house"),
label = "3",
description = "3"
)This allows to leverage other icon sets that fontawesome.
Bug fix
- Fix issue with the upcoming release of testthat (mistakenly using
expect()instead ofexpect_length()).