| commit | cefab9279758a6fc8be8d718f486e64d234b0105 | [log] [tgz] |
|---|---|---|
| author | Philipp Le <philipp@philipple.de> | Tue Apr 26 22:06:33 2022 +0200 |
| committer | Philipp Le <philipp@philipple.de> | Mon May 23 22:10:10 2022 +0200 |
| tree | 5b7830057885553f1eb644266a4464b9662928f4 | |
| parent | 4071d91498382039a6f396cfe8dbd01347e067e6 [diff] [blame] |
feat: Control widget for numeric fields Change-Id: I00680f69dab06dedafde990dba3de1eeb994164a
diff --git a/dcs/config/ui/ui_create.py b/dcs/config/ui/ui_create.py index 1bff499..16d4ede 100644 --- a/dcs/config/ui/ui_create.py +++ b/dcs/config/ui/ui_create.py
@@ -10,9 +10,11 @@ from pydantic import BaseModel from .base import ConfigWidget +from .num_widget import NumWidget _CLASS_REGISTRY: List[Type[ConfigWidget]] = [ + NumWidget, ]