From f1278de71ab1036fb664044e3beca6172864e54c Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Mon, 22 Nov 2021 12:02:22 +0100 Subject: [PATCH] Fix issue in detecting script data assignment --- panel/reactive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/reactive.py b/panel/reactive.py index 93d72e6291..c1f08c7b31 100644 --- a/panel/reactive.py +++ b/panel/reactive.py @@ -1265,7 +1265,7 @@ class ReactiveHTML(Reactive, metaclass=ReactiveHTMLMetaclass): _scripts = {} - _script_assignment = r'data.([^[^\d\W]\w*)[ ]*[\+,\-,\*,\\,%,\*\*,<<,>>,>>>,&,\^,|,\&\&,\|\|,\?\?]*=' + _script_assignment = r'data\.([^[^\d\W]\w*)[ ]*[\+,\-,\*,\\,%,\*\*,<<,>>,>>>,&,\^,|,\&\&,\|\|,\?\?]*=' __abstract = True