We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18a419f commit e182a7eCopy full SHA for e182a7e
CHANGELOG.md
@@ -24,7 +24,7 @@ Types of changes are to be listed in this order
24
25
- Nothing (yet)
26
27
-## [1.1.0] - 2022-06-25
+## [1.1.0] - 2022-07-01
28
29
### Added
30
src/django_idom/components.py
@@ -14,16 +14,7 @@ def django_css(static_path: str):
14
static_path: The path to the static file. This path is identical to what you would
15
use on a `static` template tag.
16
"""
17
- return html._(
18
- html.script(
19
- """
20
- let parentTag = document.currentScript;
21
- console.log(parentTag);
22
- //parentTag.attachShadow({ mode: 'open' });
23
- ),
- html.style(_cached_static_contents(static_path)),
- )
+ return html._(html.style(_cached_static_contents(static_path)))
@component
0 commit comments