AUR0811
Error Message
AUR0811: Invalid portal strict target query, empty query.
Description
This error occurs when using the portal custom attribute in strict mode (e.g., portal="strict: <selector>" or portal.strict="<selector>") and the provided CSS selector used to find the target element is an empty string or contains only whitespace.
Cause
The direct cause is providing an empty or whitespace-only query string to the portal attribute when using the strict: prefix or the .strict binding mode. The strict mode requires a valid CSS selector to precisely identify the target element where the portal content should be rendered.
Example causes:
portal="strict:"portal="strict: "portal.strict=""portal.strict.bind="someProperty"wheresomePropertyevaluates to an empty string.
Solution
Ensure that when using the strict mode for the portal attribute, you provide a valid, non-empty CSS selector that uniquely identifies the target element in the DOM.
Provide a Selector: Add a valid CSS selector after
strict:.Check Bound Property: If binding the selector (e.g.,
portal.strict.bind="targetSelector"), ensure the view model property (targetSelectorin this case) holds a valid, non-empty CSS selector string.Remove Strict Mode: If strict targeting isn't required, remove the
strict:prefix or use a different binding mode (portal="target:<selector>"orportal.bind="targetElement").
Example
Debugging Tips
Inspect the value of the
portalattribute in the DOM where the error occurs.If the selector is bound, check the value of the corresponding view model property at runtime using
console.logor debugger tools.Ensure the selector provided is a valid CSS selector recognized by
document.querySelector.Verify that the
strict:prefix is correctly formatted if used.
Last updated
Was this helpful?