Skip to content

Commit

Permalink
fix(GoogleAnalytics): addCustomDimension() key param is number
Browse files Browse the repository at this point in the history
closes #131
  • Loading branch information
ihadeed committed Apr 25, 2016
1 parent 9c78837 commit 3865ea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/googleanalytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class GoogleAnalytics {
* @param {string} value
*/
@Cordova()
static addCustomDimension(key: string, value: string): Promise<any> { return }
static addCustomDimension(key: number, value: string): Promise<any> { return }

/**
* Set a UserId
Expand Down

0 comments on commit 3865ea4

Please sign in to comment.