Skip to content

Commit

Permalink
Fixed document observable not emitting current document
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Feb 29, 2024
1 parent 6c2e029 commit de46c41
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.8fd75fb4.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.cee5e008.min.js' | url }}"></script>
{% for script in config.extra_javascript %}
{{ script | script_tag }}
{% endfor %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function inject(next: Document): Observable<Document> {
}
}),
ignoreElements(),
endWith(next)
endWith(document)
)
}

Expand Down

0 comments on commit de46c41

Please sign in to comment.