diff --git a/modules_forge/gradio_compile.py b/modules_forge/gradio_compile.py index 7aabf40f..5b9dd0d4 100644 --- a/modules_forge/gradio_compile.py +++ b/modules_forge/gradio_compile.py @@ -4,7 +4,7 @@ def gradio_compile(items, prefix): t = v[0] d = v[1] if len(v) > 1 else None name = (prefix + '_' + k).replace(' ', '_').lower() - title = name.replace('_', ' ').capitalize() + title = name.replace('_', ' ').title() if t == 'INT': default = int(d['default'])