Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Once this was merged in teal.slice and the version was bumped to `0.5.1.9013` insightsengineering/teal.slice#622 We now allow non-alphabetical non-standard names in filter panel. Without it, some tests break. Below is for teal.slice `0.5.1.9012` ```r data = within( teal.data::teal_data(), { iris <- iris mtcars <- mtcars `_a variable with spaces_` <- "new_column" # nolint: object_name. iris <- cbind(iris, data.frame(`_a variable with spaces_`)) } ) teal_data_to_filtered_data(data) Error in check_simple_name(dataname) : name '_a variable with spaces_' must only contain alphanumeric characters (with underscores) and the first character must be an alphabetic character Called from: check_simple_name(dataname) ``` --------- Signed-off-by: Marcin <[email protected]> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information