Multiline notifications

Hi

Is it possible to create multi line notifications? I have tried adding \n and
to the message string but no joy.

Thanks
Tim

Hi Tim,

Not possible at the moment - I'll check to see if we can enabled this!

Best Regards,
Vladimir

You can add the following CSS to server\wwwroot\assets\css\styles.css:

.ui-growl-message {
  display: flex;
}

.ui-growl-title {
  margin-right: 8px;
}

.ui-growl-message p {
  white-space: pre-line;
}

It would then display \n as new lines:

1 Like

Brilliant, works a charm! thanks for your always excellent customer support.

Tim