File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
components/dynamic-modules/faq Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ export const evaluateTranslationTemplate: (
216216 template : string ,
217217 data : TCustomItem
218218) => string = ( template , data ) => {
219- const TEMPLATE_REGEX = / \{ \{ ( [ ^ \ }] + ) \} \} / g;
219+ const TEMPLATE_REGEX = / \{ \{ ( [ ^ } ] + ) \} \} / g;
220220 if ( ! TEMPLATE_REGEX . test ( template ) ) {
221221 const value = getValueByPath ( data , template ) ;
222222 if ( value === undefined ) {
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ const FaqModule: FC<IAgenda> = ({
2727
2828 return (
2929 < div
30- className = "border-none block relative min-h-[110px]"
3130 style = { {
3231 // height of the table should not be greater than max-content
3332 height : `${ Math . min ( initialItemsHeight , widgetHeight ) } px` ,
You can’t perform that action at this time.
0 commit comments