From 26bacadfe0bdc5d5628683b8353b9e9e6cb5c854 Mon Sep 17 00:00:00 2001 From: Jo-Byr Date: Fri, 29 May 2026 09:27:05 +0200 Subject: [PATCH] fix: serve path Add missing version number in serve path --- src/trame_simput/module/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trame_simput/module/__init__.py b/src/trame_simput/module/__init__.py index fabdb7c..470ccce 100644 --- a/src/trame_simput/module/__init__.py +++ b/src/trame_simput/module/__init__.py @@ -7,7 +7,7 @@ serve_path = str(Path(__file__).with_name("serve").resolve()) # Serve directory for JS/CSS files -serve = {"__trame_simput": serve_path} +serve = {f"__trame_simput_{__version__}": serve_path} # List of JS files to load (usually from the serve path above) scripts = []