Skip to content

Commit 3316bb4

Browse files
committed
Release v0.2.2
1 parent 0397a06 commit 3316bb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "koreui"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "Dynamic GUI Generator from JSON Schema"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .kore import JsonSchemaForm
22
from .loader import load_schema
33

4-
__version__ = "0.2.1"
4+
__version__ = "0.2.2"
55

66
__all__ = ["JsonSchemaForm", "load_schema"]

src/kore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2040,7 +2040,7 @@ def __init__(self, schema: Dict[str, Any], data: Dict[str, any] = None, title: s
20402040

20412041
# Store Data Dictionary
20422042
if data is not None:
2043-
schema["oprtionsData"] = data
2043+
schema["optionsData"] = data
20442044

20452045
# Initialize components
20462046
self.resolver = SchemaResolver(schema)

0 commit comments

Comments
 (0)