Trying to use urlMask but getting empty string #549
-
What product are you having troubles with?Console What Console version are you using?1.102.8 DescriptionI am trying to use urlMask to inject an id to be used with the event url: {
"tag": "bk-button",
"properties": {
"urlMask": "version-approval/:id",
"content": "All Needed Versions",
"action": {
"type": "event",
"config": {
"events": [
{
"label": "add-filter",
"payload": {
"operator": "equal",
"property": "approvedOn",
"value": null,
"name": "approvedOnFilter"
}
},
{
"label": "add-filter",
"payload": {
"operator": "equal",
"property": "projectId",
"value": "{{pathnameParams.params.id}}",
"name": "projectIdFilter"
}
}
]
}
}
}
} Actual OutcomeThe value of the Expected OutcomeThe value of the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @rmuller-vu, Your |
Beta Was this translation helpful? Give feedback.
Hi @rmuller-vu,
Your
urlMask
should match the entire path, so if your path ismfe-application/version-approval/6685548221585cd2c280907f
, yoururlMask
should be/mfe-application/version-approval/:id