Skip to content

Commit 1648af6

Browse files
make sortable available to notebooks (#1234)
1 parent f2cd20c commit 1648af6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pgml-dashboard/src/components/layouts/head/template.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,13 @@
5353
<link rel="stylesheet" data-turbo-track="reload" href="<%- config::css_url("style.css") %>">
5454
<script async src="https://data.cloud.hyperparam.ai/script.js" data-website-id="499122fd-f307-4e8d-af4b-88b9f5e9903b"></script>
5555
<script defer src="https://cdn.plot.ly/plotly-2.11.1.min.js"></script>
56-
<script type="module" defer async src="/dashboard/static/js/libs/sortable-1.12.0.min.js"></script>
5756
<script data-turbo-trace="reload" type="module" src="<%= config::js_url("bundle.js") %>" async defer></script>
5857

5958
<!-- version: <%= config::git_sha() %> -->
6059
<% } %>
6160

61+
<script type="module" defer async src="/dashboard/static/js/libs/sortable-1.12.0.min.js"></script>
62+
6263
<% for link in preloads { %>
6364
<link rel="preload" fetchpriority="high" as="image" href=<%= link %> type="image/webp">
6465
<% }; %>

pgml-dashboard/src/utils/markdown.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,6 @@ pub fn mkdocs<'a>(root: &'a AstNode<'a>, arena: &'a Arena<AstNode<'a>>) -> anyho
933933
}
934934

935935
&mut NodeValue::Text(ref mut text) => {
936-
937936
// Strip .md extensions that gitbook includes in page link text
938937
if text.ends_with(".md") {
939938
if let Some(parent) = node.parent() {

0 commit comments

Comments
 (0)