@sanity/ailf-studio 0.1.24 → 0.1.25
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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3986,6 +3986,7 @@ function ReportRow({
|
|
|
3986
3986
|
/* @__PURE__ */ jsxs12(Flex9, { align: "center", gap: 2, wrap: "wrap", children: [
|
|
3987
3987
|
/* @__PURE__ */ jsx15(Text13, { size: isSmall ? 2 : 3, weight: "semibold", children: report.tag ?? formatCardDate(report.completedAt) }),
|
|
3988
3988
|
git && /* @__PURE__ */ jsxs12(Flex9, { align: "center", gap: 2, children: [
|
|
3989
|
+
git.repo && /* @__PURE__ */ jsx15(Code, { size: isSmall ? 1 : 2, style: { opacity: 0.7 }, children: git.repo }),
|
|
3989
3990
|
/* @__PURE__ */ jsxs12(Inline, { space: 1, children: [
|
|
3990
3991
|
/* @__PURE__ */ jsx15(GitBranchIcon, { style: { opacity: 0.6 } }),
|
|
3991
3992
|
/* @__PURE__ */ jsx15(Code, { size: isSmall ? 1 : 2, children: git.branch })
|
|
@@ -3994,7 +3995,7 @@ function ReportRow({
|
|
|
3994
3995
|
"#",
|
|
3995
3996
|
git.prNumber
|
|
3996
3997
|
] }),
|
|
3997
|
-
tier === "full" && /* @__PURE__ */ jsx15(Code, { size: 1, style: { opacity: 0.5 }, children: git.sha.slice(0, 7) })
|
|
3998
|
+
tier === "full" && git.sha && git.sha !== "unknown" && /* @__PURE__ */ jsx15(Code, { size: 1, style: { opacity: 0.5 }, children: git.sha.slice(0, 7) })
|
|
3998
3999
|
] })
|
|
3999
4000
|
] }),
|
|
4000
4001
|
/* @__PURE__ */ jsxs12(Flex9, { align: "center", gap: 2, wrap: "wrap", children: [
|