Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -17,7 +17,7 @@ export class TrackingUtils { | @@ -17,7 +17,7 @@ export class TrackingUtils { | ||
| 17 | static fillPositionWith(attr: ParamType) { | 17 | static fillPositionWith(attr: ParamType) { |
| 18 | let pageName = attr["pageName"] as string | 18 | let pageName = attr["pageName"] as string |
| 19 | let action = attr["action"] as string | 19 | let action = attr["action"] as string |
| 20 | - if (action.length > 0) { | 20 | + if (action != null && action.length > 0) { |
| 21 | attr["saPosition"] = pageName + "_" + action | 21 | attr["saPosition"] = pageName + "_" + action |
| 22 | return | 22 | return |
| 23 | } | 23 | } |
-
Please register or login to post a comment