Skip to content

Commit

Permalink
Merge branch 'master' into kazandzhiev/pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Chariyski committed Nov 9, 2015
2 parents 302947b + 2f7f98b commit d40ded1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/scripts/modules/injected/controlUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function ClickableValue(options) {
// This is used for checking in the dataView
this._isClickableValueForDataView = true;
// This is shown in the data view
this.value = '<clickable-value key="' + options.key + '" parent="' + options.parent + '">' + options.value || '' + '</clickable-value>';
this.value = '<clickable-value key="' + options.key + '" parent="' + options.parent + '">' + (options.value || '') + '</clickable-value>';
// This data is attached in the click event of the dataview
this.eventData = options.eventData || {};
}
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/ui/DataView.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ var clickableValueData = {
listMode: 'SingleSelectMaster'
}
},
value: '<clickable-value key="model" parent="counter">entity (TwoWay, JSONModel)',
value: '<clickable-value key="model" parent="counter">entity (TwoWay, JSONModel)</clickable-value>',
path: 'sampleCount',
type: 'int'
}
Expand Down

0 comments on commit d40ded1

Please sign in to comment.