We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 851ad47 commit d7cf618Copy full SHA for d7cf618
client/src/pages/platform/workflow-editor/components/Properties/Property.tsx
@@ -273,7 +273,7 @@ const Property = ({
273
274
strippedValue = strippedValue.replace(/<\/p><p>/g, '\n');
275
276
- if (propertyParameterValue?.includes('\n')) {
+ if (typeof propertyParameterValue === 'string' && propertyParameterValue.includes('\n')) {
277
const equal =
278
sanitizeHtml(propertyParameterValue, {allowedTags: []}).trim() ===
279
sanitizeHtml(mentionInputValue, {allowedTags: []}).trim();
0 commit comments