-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Use NO_VALUE to represent empty weights * Skip over null weights * Clean up calculations * Standardize naming * Fix null weight display * Add explanation for empty weights * Fix downloaded result empty weight display * Fix order of assertEquals * Handle null conversion to NO_VALUE when input out of focus * Revert back to using null value * Fix display when all chosen weights are empty * Standardize display for empty values * Fix failing tests
- Loading branch information
1 parent
325d066
commit b49359e
Showing
7 changed files
with
144 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,7 @@ | |
"recipientEmail": "[email protected]", | ||
"recipientName": "Alice", | ||
"recipientTeam": "Team 1", | ||
"areSubQuestionChosenWeightsAllNull": [false, false, false], | ||
"subQuestionTotalChosenWeight": [1, 1, 0.8], | ||
"subQuestionWeightAverage": [0.5, 0.5, 0.4], | ||
"weightsAverage": [0.23, 0.77], | ||
|
@@ -88,6 +89,7 @@ | |
"recipientEmail": "[email protected]", | ||
"recipientName": "Bob", | ||
"recipientTeam": "Team 2", | ||
"areSubQuestionChosenWeightsAllNull": [false, false, false], | ||
"subQuestionTotalChosenWeight": [0.4, 1, 0.8], | ||
"subQuestionWeightAverage": [0.2, 0.5, 0.4], | ||
"weightsAverage": [0.23, 0.77], | ||
|
Oops, something went wrong.