We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9428018 commit b4f5a95Copy full SHA for b4f5a95
djangocms_frontend/templatetags/cms_component.py
@@ -64,7 +64,7 @@ def _to_tuple_if_needed(value: str) -> str | tuple[str, str]:
64
"""
65
match = re.match(r"^(.*?)\s*<([^>]+)>\s?$", value)
66
if match:
67
- return [match.group(1).strip(), match.group(2).strip()]
+ return [match.group(2).strip(), match.group(1).strip()]
68
return value
69
70
0 commit comments