N
Novu2w ago
Eden

Notification titles containing '&' is decoded to '&' in frontend.

Special characters in notification title do not show up well in FE for some reason, title here is supposed to be 'Broken & Cream'. Anything i can do about that on my side? In order to reproduce, just send any notification with an ampersand (&)
No description
14 Replies
Tomer Barnea
Tomer Barnea2w ago
Hi @Eden thanks for reporting that. That happens in the <Inbox /> component?
Novu_Bot
Novu_Bot2w ago
@Tomer Barnea, you just advanced to level 26!
Tomer Barnea
Tomer Barnea2w ago
Regardless, the team is investigating an issue like that, so I’ll add your report.
Eden
EdenOP2w ago
Thx @Tomer Barnea, would love to know a timeline when possible, we'll currently implement a workaround
Tomer Barnea
Tomer Barnea2w ago
CN you confirm it’s in the inbox component? Which version? Using cloud?
Eden
EdenOP2w ago
1.Inbox component, vanilla 2. "@novu/react": "^3.0.0", 3. Yes, using cloud 🙏
Tomer Barnea
Tomer Barnea2w ago
Perfect, I’ll tag @Pawan Jain , can you follow up here with more info on release date? Hi @Eden following up here. This was deployed.
Tomer Barnea
Tomer Barnea2w ago
Open up the template, and select Bypass sanitization. It will allow you to send things like &.
No description
No description
Eden
EdenOP2w ago
Thanks @Tomer Barnea But i'm looking to do this programmatically
await step.inApp(
'send-mention-notification',
async () => {
return {
body: controls.subject ?? `${mentionedByName} mentioned you in a comment`,
subject: 'Subject'
data: {
...
},
};
},
{
skip: async () => shouldSkipMentionWorkflow(payload),
},
);
await step.inApp(
'send-mention-notification',
async () => {
return {
body: controls.subject ?? `${mentionedByName} mentioned you in a comment`,
subject: 'Subject'
data: {
...
},
};
},
{
skip: async () => shouldSkipMentionWorkflow(payload),
},
);
Tomer Barnea
Tomer Barnea2w ago
Ohhh, got it, you can disable this in the framework. https://docs.novu.co/framework/typescript/steps
Tomer Barnea
Tomer Barnea2w ago
No description
Tomer Barnea
Tomer Barnea2w ago
just add disableOutputSanitization to the option object
Pawan Jain
Pawan Jain2w ago
@Eden adding disableOutputSanitization options with false value worked for you?
Eden
EdenOP2w ago
@Pawan Jain Just tried it, seems to have worked for me, thx @Tomer Barnea for the fast response and attentiveness 🙏

Did you find this page helpful?