You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ht <- hux(a = 1:2)
top_padding(ht)[1, 1] <- '6px'
top_padding(ht) # shows that default 4 has become character '4'
print_html(ht) # and character 4 is interpreted as its own unit.
The text was updated successfully, but these errors were encountered:
It is hard to warn about this because before e.g. top_padding<- is called, [<- has been called on top_padding(ht) to create the full matrix of values. Hence the mode has already changed to something new before you can detect it.
E.g. this breaks:
The text was updated successfully, but these errors were encountered: