diff options
Diffstat (limited to 'qolab/gui')
-rw-r--r-- | qolab/gui/web.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/gui/web.py b/qolab/gui/web.py index b577d6c..ac4d164 100644 --- a/qolab/gui/web.py +++ b/qolab/gui/web.py @@ -48,7 +48,7 @@ class QOLParamReadWrite(QOLParamHeader): def __init__(self, label='NameNotSet', **kwargs): super().__init__(label=label, **kwargs) root = self - self.input=jp.Input(classes=input_classes, model=[root, label], a=root, spellcheck="false") + self.input=jp.InputChangeOnly(classes=input_classes, model=[root, label], a=root, spellcheck="false") class QOLCheckbox(jp.Label): def __init__(self, label='NameNotSet', **kwargs): |