Skip to content

Commit 3d7ab2f

Browse files
authored
Merge branch 'master' into master
2 parents cfba962 + b5554f6 commit 3d7ab2f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

web-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"local-storage-fallback": "^4.1.1",
1212
"lodash": "^4.17.21",
1313
"luxon": "^3.4.3",
14-
"mds": "https://github.com/minio/mds.git#v0.14.0",
14+
"mds": "https://github.com/minio/mds.git#v0.15.0",
1515
"pdfjs-dist": "3.11.174",
1616
"react": "^18.1.0",
1717
"react-component-export-image": "^1.0.6",

web-app/src/screens/Console/Common/DarkModeActivator/DarkModeActivator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// along with this program. If not, see <http://www.gnu.org/licenses/>.
1616

1717
import React from "react";
18-
import { Button, DarkModeIcon } from "mds";
18+
import { Button, DarkModeIcon, LightModeIcon } from "mds";
1919
import TooltipWrapper from "../TooltipWrapper/TooltipWrapper";
2020
import { useSelector } from "react-redux";
2121
import { AppState, useAppDispatch } from "../../../../store";
@@ -38,7 +38,7 @@ const DarkModeActivator = () => {
3838
<TooltipWrapper tooltip={`${darkMode ? "Light" : "Dark"} Mode`}>
3939
<Button
4040
id={"dark-mode-activator"}
41-
icon={<DarkModeIcon />}
41+
icon={darkMode ? <LightModeIcon /> : <DarkModeIcon />}
4242
onClick={darkModeActivator}
4343
/>
4444
</TooltipWrapper>

web-app/yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8280,15 +8280,15 @@ mdn-data@2.0.4:
82808280
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
82818281
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
82828282

8283-
"mds@https://github.com/minio/mds.git#v0.14.0":
8284-
version "0.14.0"
8285-
resolved "https://github.com/minio/mds.git#05bb3e2737f0809234bcf63d7517a8df80ab69ed"
8283+
"mds@https://github.com/minio/mds.git#v0.15.0":
8284+
version "0.15.0"
8285+
resolved "https://github.com/minio/mds.git#509338e926c86edd14422e3609fb843a9c2b539f"
82868286
dependencies:
82878287
"@types/styled-components" "^5.1.34"
82888288
"@uiw/react-textarea-code-editor" "^3.0.2"
82898289
detect-gpu "^5.0.37"
82908290
luxon "^3.4.4"
8291-
react-calendar "^4.7.0"
8291+
react-calendar "^4.8.0"
82928292
react-virtualized "^9.22.5"
82938293
styled-components "^5.3.11"
82948294

@@ -10167,7 +10167,7 @@ react-app-rewired@^2.2.1:
1016710167
dependencies:
1016810168
semver "^5.6.0"
1016910169

10170-
react-calendar@^4.7.0:
10170+
react-calendar@^4.8.0:
1017110171
version "4.8.0"
1017210172
resolved "https://registry.yarnpkg.com/react-calendar/-/react-calendar-4.8.0.tgz#61edbba6d17e7ef8a8012de9143b5e5ff41104c8"
1017310173
integrity sha512-qFgwo+p58sgv1QYMI1oGNaop90eJVKuHTZ3ZgBfrrpUb+9cAexxsKat0sAszgsizPMVo7vOXedV7Lqa0GQGMvA==

0 commit comments

Comments
 (0)