fix typo this -> self
This commit is contained in:
parent
eee24d61a0
commit
bec906cd54
|
@ -100,7 +100,7 @@ class TiramisuOptionOption:
|
||||||
props.append('mandatory')
|
props.append('mandatory')
|
||||||
if model.get('readOnly'):
|
if model.get('readOnly'):
|
||||||
props.append('frozen')
|
props.append('frozen')
|
||||||
if self.config.get_hidden(this._path):
|
if self.config.get_hidden(self._path):
|
||||||
props.append('hidden')
|
props.append('hidden')
|
||||||
if self.form.get(self._path, {}).get('clearable'):
|
if self.form.get(self._path, {}).get('clearable'):
|
||||||
props.append('clearable')
|
props.append('clearable')
|
||||||
|
|
Loading…
Reference in New Issue