Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUGFIX] Do not pretend to be a cObject (#1513)
* [BUGFIX] Do not pretend to be a cObject `templateName` is of type string/stdWrap. However, the snippet gives the impression that it is a cObject due to `templateName = TEXT`. Working: ``` templateName = Default ``` Working ``` templateName.stdWrap.cObject = TEXT templateName.stdWrap.cObject.value = Default ``` *Not* working ``` templateName= TEXT templateName.value = Default ``` * [TASK] Remove unnecessary stdWrap No extra `stdWrap` is necessary. `templateName` has direct stdWrap behaviour. Related: #1513
- Loading branch information