Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update bootstrap, add bootstrap js #225

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update bootstrap, add bootstrap js
acoreyj committed Jan 14, 2024
commit 21f31ffb5c8cead0e46e6a557236b4c00c1d481f
10 changes: 7 additions & 3 deletions src/cms/admin/theme.tsx
Original file line number Diff line number Diff line change
@@ -29,11 +29,10 @@ export const Layout = (props: {
type="image/x-icon"
href="/public/images/favicon.ico"
/>

<link
href="https://cdn.jsdelivr.net/npm/[email protected].0-alpha3/dist/css/bootstrap.min.css"
href="https://cdn.jsdelivr.net/npm/[email protected].2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link
@@ -276,6 +275,11 @@ export const Layout = (props: {
<script src="/public/js/grid.js"></script>
<script src="/public/js/grid-in-memory-cache.js"></script>
<script src="/public/js/grid-kv-cache.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
</body>
</html>
);