Skip to content

Commit

Permalink
feat(FEC-9326): report productVersion (#275)
Browse files Browse the repository at this point in the history
get Product version from uiConf.
  • Loading branch information
Yuvalke authored and OrenMe committed Oct 31, 2019
1 parent 6b87274 commit 304f9ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/plugins/plugins-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const removeUnevaluatedExpression = (obj = {}): Object =>
*/
const getModel = (options: KPOptionsObject): Object => {
const dataModel: Object = {
pVersion: __VERSION__,
pVersion: options.productVersion ? options.productVersion : __VERSION__,
pName: __NAME__
};
if (options.targetId) {
Expand Down

0 comments on commit 304f9ca

Please sign in to comment.