Skip to content
Snippets Groups Projects
Commit c55e8dd4 authored by rhenck's avatar rhenck
Browse files

Fix drop-list sanitization to also work with empty strings

parent 7dd56bec
No related branches found
No related tags found
No related merge requests found
Pipeline #40879 failed
......@@ -355,7 +355,7 @@ export class SanitizationService {
newElement.value = newValues;
}
if ((newElement.value as any)[0]?.stringValue) {
if ((newElement.value as any)[0]?.stringValue !== undefined) {
type OldDragNDropValueObject = {
id: string;
stringValue?: string;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment