We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb22d8f commit 5f002dcCopy full SHA for 5f002dc
R/create_interactive_report.R
@@ -469,7 +469,11 @@ create_interactive_report <-
469
for (report_type in names(real_estate_files)) {
470
xx <- real_estate_files[[report_type]]
471
for (yy in xx) {
472
- portfolio_type <- yy[["portfolio_type"]]
+ if (is.null(yy[["portfolio_type"]])) {
473
+ next
474
+ } else {
475
+ portfolio_type <- yy[["portfolio_type"]]
476
+ }
477
portfolio_id <- dplyr::coalesce(yy[["portfolio_id"]], NA_integer_)
478
for (report_language in c("de", "fr")) {
479
this_report <- data.frame(
0 commit comments