Skip to content

Commit fa8d73c

Browse files
committed
Fix locates after the webjars upgrade
1 parent 994d3e4 commit fa8d73c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/views/main.scala.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
@* Here's where we render the page title `String`. *@
1111
<title>@title</title>
12-
@webJarsUtil.locate("bootstrap.min.css").css()
13-
@webJarsUtil.locate("popper.js/2.11.7/umd/popper.js").script()
14-
@webJarsUtil.locate("bootstrap.min.js").script()
15-
@webJarsUtil.locate("htmx.js").script()
12+
@webJarsUtil.locate("bootstrap", "bootstrap.min.css").css()
13+
@webJarsUtil.locate("popper.js", "umd/popper.js").script()
14+
@webJarsUtil.locate("bootstrap", "bootstrap.min.js").script()
15+
@webJarsUtil.locate("htmx.org", "htmx.js").script()
1616
<link rel="stylesheet" href="@routes.Assets.versioned("stylesheets/main.css")">
1717
</head>
1818
<body hx-boost="true">

0 commit comments

Comments
 (0)