diff --git a/server/src/workflow-management/selector.ts b/server/src/workflow-management/selector.ts index 3cf8bb34..38905a1a 100644 --- a/server/src/workflow-management/selector.ts +++ b/server/src/workflow-management/selector.ts @@ -630,7 +630,7 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => { return new Set( attributes.filter((attr) => { const attrValue = element.getAttribute(attr); - + return attrValue != null && attrValue.length > 0; }) ); }