qt-ui-kit 1.0.59 → 1.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -16415,7 +16415,8 @@ function EventCard({
|
|
|
16415
16415
|
sender: d.sender,
|
|
16416
16416
|
source: d.source,
|
|
16417
16417
|
subjectLine: d.subjectLine,
|
|
16418
|
-
onExternal: () => window.open(d.link, "_blank")
|
|
16418
|
+
onExternal: () => window.open(d.link, "_blank"),
|
|
16419
|
+
summary: d.summary
|
|
16419
16420
|
}
|
|
16420
16421
|
)) : /* @__PURE__ */ jsx32(Fragment12, { children: " " }) });
|
|
16421
16422
|
case "ticket" /* TICKET */:
|
|
@@ -16429,7 +16430,8 @@ function EventCard({
|
|
|
16429
16430
|
sender: d.sender,
|
|
16430
16431
|
source: d.source,
|
|
16431
16432
|
subjectLine: d.subjectLine,
|
|
16432
|
-
onExternal: () => window.open(d.link, "_blank")
|
|
16433
|
+
onExternal: () => window.open(d.link, "_blank"),
|
|
16434
|
+
summary: d.summary
|
|
16433
16435
|
}
|
|
16434
16436
|
)) : /* @__PURE__ */ jsx32(Fragment12, { children: " " }) });
|
|
16435
16437
|
default:
|