@roqua/quby-frontend 0.12.1 → 0.12.2
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/quby-frontend.es.js +1 -1
- package/package.json +1 -1
package/dist/quby-frontend.es.js
CHANGED
|
@@ -13643,7 +13643,7 @@ const ProgressBar = ({
|
|
|
13643
13643
|
};
|
|
13644
13644
|
const HtmlItem = ({ item }) => {
|
|
13645
13645
|
const html = useTranslationCurliesFor(`${item.key}`);
|
|
13646
|
-
if (!html)
|
|
13646
|
+
if (!html) return null;
|
|
13647
13647
|
return /* @__PURE__ */ jsx("div", { className: "item", children: /* @__PURE__ */ jsx("div", { className: "prose text", dangerouslySetInnerHTML: { __html: html } }) });
|
|
13648
13648
|
};
|
|
13649
13649
|
const MainLabel = ({ question }) => {
|