- fixed validating table form field;

- fixed issue with bando preview;
This commit is contained in:
Vitalii Kiiko
2024-10-22 12:51:58 +02:00
parent 250a75e375
commit 1b37b7b548
4 changed files with 24 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
import parse from 'html-react-parser';
const renderHtmlContent = (content) => parse(content);
const renderHtmlContent = (content = '') => parse(content);
export default renderHtmlContent;