Fix - light theme ui break due to theme

This commit is contained in:
lalitdeore12@gmail.com
2025-05-20 01:02:16 +05:30
parent dc166a3d53
commit e92c2817b2
8 changed files with 542 additions and 61 deletions
+3 -3
View File
@@ -680,7 +680,7 @@ const CacheView = memo((props) => {
labelId="input-namespace-select-label"
id="input-namespace-select-id"
style={{
color: "white",
color: theme.palette.textFieldStyle.color,
minWidth: 122,
maxWidth: 122,
height: 35,
@@ -719,7 +719,7 @@ const CacheView = memo((props) => {
<MenuItem
key={index}
value={data}
style={{ color: "white" }}
style={{ color: theme.palette.textFieldStyle.color, }}
>
{data.replaceAll("_", " ")}
</MenuItem>
@@ -826,7 +826,7 @@ const CacheView = memo((props) => {
}}
InputProps={{
style: {
color: "white",
color: theme.palette.textFieldStyle.color,
height: 35,
fontSize: 16,
borderRadius: 4,