Top right Notification box too small? (No Dynamic sizing?)

Thanks for the nudge in some direction.
That indeed does make the popup (toast) bigger, but it also removes the original payload and so its blank:

I tried putting the template in the front and behind the function node with the data. I have tired changing the name of the payload, but the notification node only looks for msg.payload.

I have done probably 30 or 40 deploys trying different things, it just seems that the template has to remove the payload in order for it to do its job?

Here is how I currently have the flow:

[{"id":"5c01d1484c60092d","type":"inject","z":"0928763894a95f05","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payloadType":"date","x":430,"y":580,"wires":[["f09982bb6665715d"]]},{"id":"7d67b18647a92348","type":"ui_toast","z":"0928763894a95f05","position":"top right","displayTime":"30","highlight":"","sendall":true,"outputs":0,"ok":"OK","cancel":"","raw":true,"className":"","topic":"","name":"","x":1000,"y":580,"wires":[]},{"id":"f09982bb6665715d","type":"function","z":"0928763894a95f05","name":"HTML Popup","func":"//Pretty typical payload\nmsg.payload.Timestamp = \"15:42:37Z 24-01-2022\";\nmsg.filter=\"CLRD\";\nmsg.payload.ICAO=\"896C3E\";\nmsg.payload.Rego=\"1229\";\nmsg.payload.Type=\"C17\";\nmsg.payload.Desc=\"BOEING C-17 Globemaster 3\";\nmsg.payload.ADSBEx=\"https://globe.adsbexchange.com/?icao=896C3E\";\nmsg.payload.Raw=\"AES:896C3E GES:D0 2 .40007A ! A1 R\\n\\n\\t/YQXE4YA.OC1/CLX 1542 220124 CZQX CLRNCE 633\\n\\tUAF1230 CLRD TO EGPK VIA NICSO\\n\\tRANDOM ROUTE\\n\\t48N050W 52N040W 55N030W 56N020W PIKIL SOVED\\n\\tFM NICSO/1632 MNTN F290 M079\\n\\tEND OF MESSAGE18B9\\n\\n\";\nmsg.sat=\"C-98W\";\n\n//Build the HTML for the popup\nmsg.payload = '<!DOCTYPE html><html><body>'+\n'<h3>Trigger: '+msg.filter+'</h3>'+\n'<p>ICAO: '+msg.payload.ICAO+'</p>'+\n'<p>Reg: '+msg.payload.Rego+'</p>'+\n'<p>Description: '+msg.payload.Desc+'</p>'+\n'<p>Msg source: '+msg.sat+'</p>'+\n'<a target=\"_blank\" href='+msg.payload.ADSBEx+'><font color=\"7e97fc\">Link to ADSBExchange</a>'+\n'<p>Raw msg: '+msg.payload.Raw+'</p>'+\n'</body></html>';\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":650,"y":580,"wires":[["d9b3a29be6385fe8"]]},{"id":"d9b3a29be6385fe8","type":"template","z":"0928763894a95f05","name":"toast","field":"payload","fieldType":"msg","format":"html","syntax":"mustache","template":"<style>\n    md-toast .md-toast-content {\n  min-height: 480px;\n}\n</style>","output":"str","x":810,"y":580,"wires":[["7d67b18647a92348"]]}]