- Goal: I am trying to show a link in a Retool notification using
utils.showNotifcation
I have tried the following:
utils.showNotification({
title: "Test",
description: "[link] (https://google.com)",
notificationType: "success",
duration: 5,
});
utils.showNotification({
title: "Test",
description: "https://google.com",
notificationType: "success",
duration: 5,
});
Does anyone known how to get links to work in notifications?
I am running this in 3.75 in a self-hosted deployment.