Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fe258ed

Browse files
committedMar 4, 2024
release: v5.0.0-rc.1
1 parent 7e320e8 commit fe258ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+45
-45
lines changed
 

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template",
3-
"version": "5.0.0-rc.0",
3+
"version": "5.0.0-rc.1",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",

‎src/js/color-modes.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
2121
}
2222

23-
const setTheme = function (theme) {
23+
const setTheme = theme => {
2424
if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) {
2525
document.documentElement.setAttribute('data-coreui-theme', 'dark')
2626
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.