Skip to content

Commit

Permalink
Merge pull request #45 from qlik-oss/DEB-168/MissingText
Browse files Browse the repository at this point in the history
If dimension value doesn't contain qText use qNum
  • Loading branch information
AlbertBackenhof authored Apr 15, 2019
2 parents 4c2e483 + a518432 commit 47d7f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/initialize-transformed.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function generateMeasurements (information) {

function generateDimensionEntry (information, data) {
return {
displayValue: data.qText,
displayValue: data.qText || data.qNum,
elementNumber: data.qElemNumber,
name: information.qFallbackTitle,
value: data.qNum
Expand Down

0 comments on commit 47d7f33

Please sign in to comment.