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

Sn368 localizationfixes #2057

Open
wants to merge 16 commits into
base: develop
Choose a base branch
from
1 change: 1 addition & 0 deletions micro-ui/web/core/inter-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"resolutions": {
"**/@babel/runtime": "7.20.1",
"**/babel-preset-react-app": "10.0.0",
"**/@babel/traverse":"7.25.9",
"**/ajv": "8.11.2",
"fast-uri":"2.1.0"
},
Expand Down
1 change: 1 addition & 0 deletions micro-ui/web/micro-ui-internals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"resolutions": {
"**/@babel/runtime": "7.20.1",
"**/babel-preset-react-app": "10.0.0",
"**/@babel/traverse":"7.25.9",
"**/styled-components": "5.0.0",
"fast-uri":"2.1.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1047,4 +1047,53 @@ user-select: none;
.diff-code-insert {
background-color: #eaffee;
}
}

}


.code-details {
padding: 0.5rem 1.5rem;
background-color: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 4px;
}

.code-row {
display: flex;
align-items: flex-start;
margin-bottom: 0.75rem;
}

.code-key {
flex: 0 0 150px;
font-size: 0.9rem;
font-weight: bold;
color: #444;
}

.code-value-container {
display: flex;
flex-direction: column;
flex: 1;
}

.code-value {
font-size: 0.9rem;
color: #555;
margin-bottom: 0.2rem;
}

.code-row:last-child {
margin-bottom: 0;
}











Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,4 @@ export const UICustomizations = {
}
},
},
};
};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Improve code clarity with well-structured comments and consistent naming.
A single final bracket at line 272 is not enough to convey the boundaries of major sections within the file. Consider adding headings or in-line documentation to guide future maintainers.

Loading
Loading