Skip to content

Commit

Permalink
fix bug where automation header would disappear when their were no pk…
Browse files Browse the repository at this point in the history
…g-score based rules for the config
  • Loading branch information
aclark02-arcus committed Jan 27, 2025
1 parent 4c00154 commit 36bc736
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

Mostly minor changes here!

* Open hyperlinks in a **new tab** from cards.
* Fix bug causing app to crash with `ELSE` condition in rules
* Add `inherits` to list of used configs
* Incorporate bug fix for dependency assessment from `riskmetric` repo
* Can now Open hyperlinks in a **new tab** from cards.
* Added `inherits` to list of used configs
* Fixed bug causing app to crash with `ELSE` condition in rules
* Fixed bug where 'Decision Automation' header would disappear when non-risk decision automation rules existed but failed to include any that were based on the pkg risk score.
* Incorporate newer version of `riskmetric` for dependency assessment

# riskassessment 3.1.1

Expand Down
2 changes: 1 addition & 1 deletion R/mod_decision_automation.R
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ mod_decision_automation_server <- function(id, user, credentials){
),
uiOutput(ns("empty_auto")),
)
} else if (!rlang::is_empty(auto_decision_initial)) {
} else if (!rlang::is_empty(risk_rule_update())) {
tagList(
br(),br(),
hr(),
Expand Down

0 comments on commit 36bc736

Please sign in to comment.