Skip to content

Commit

Permalink
Merge pull request #430 from BristolMyersSquibb/hotfix-result-field
Browse files Browse the repository at this point in the history
hotfix: could not insert result block due to missing check in result field
  • Loading branch information
DivadNojnarg authored Oct 8, 2024
2 parents c1ef52e + 38cd030 commit 061ac78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: blockr
Title: A block-based framework for data manipulation and visualization
Version: 0.0.2.9030
Version: 0.0.2.9031
Authors@R:
c(person(given = "Nicolas",
family = "Bennett",
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# blockr 0.0.2.9030
# blockr 0.0.2.9031

## Feature
- Improved `submit` feature for blocks. Now submit isn't added as a class but as a special block attribute. When you design a block, you can pass the `submit` parameter like so:
Expand Down
1 change: 1 addition & 0 deletions R/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ generate_server.result_field <- function(x, ...) {
function(id, init = NULL, data = NULL) {
moduleServer(id, function(input, output, session) {
get_result <- function(inp) {
req(inp)
res <- get_stack_result(
get_workspace_stack(inp)
)
Expand Down
2 changes: 1 addition & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,6 @@ reference:

news:
releases:
- text: "blockr 0.0.2.9023"
- text: "blockr 0.0.2.9031"
- text: "blockr 0.0.2"
- text: "blockr 0.0.1.9000"

0 comments on commit 061ac78

Please sign in to comment.