We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46d1d9 commit 5f296eeCopy full SHA for 5f296ee
1 file changed
reflex/vars/base.py
@@ -119,6 +119,16 @@ def _var_name(self) -> str:
119
"""
120
return self._js_expr
121
122
+ @property
123
+ @deprecated("Use `_js_expr` instead.")
124
+ def _var_name_unwrapped(self) -> str:
125
+ """The name of the var without extra curly braces.
126
+
127
+ Returns:
128
+ The name of the var.
129
+ """
130
+ return self._js_expr
131
132
@property
133
def _var_is_string(self) -> bool:
134
"""Whether the var is a string literal.
0 commit comments