diff --git a/apps/isa-app/src/ui/modal/dialog/dialog-modal.component.html b/apps/isa-app/src/ui/modal/dialog/dialog-modal.component.html
index e8ef82bbd..d0cb96671 100644
--- a/apps/isa-app/src/ui/modal/dialog/dialog-modal.component.html
+++ b/apps/isa-app/src/ui/modal/dialog/dialog-modal.component.html
@@ -1,16 +1,43 @@
@if (modalRef.data.subtitle; as subtitle) {
{{ subtitle }}
}
-@if (modalRef.data.content; as content) {
-
- {{ content }}
-
+
+
+@if (shouldShowQrCode(); as showQr) {
+ @if (parsedContent(); as parsed) {
+ @if (parsed.textBefore) {
+ {{ parsed.textBefore }}
+ }
+
+
+
+
+
+ @if (parsed.textAfter) {
+ {{ parsed.textAfter }}
+ }
+ }
+} @else {
+
+ @if (modalRef.data.content; as content) {
+
+ {{ content }}
+
+ }
}
@if (modalRef.data.actions; as actions) {
@for (action of actions; track action) {
-