Brijesh619 commented on code in PR #683:
URL: https://github.com/apache/atlas/pull/683#discussion_r3586090822


##########
dashboard/src/index.scss:
##########
@@ -230,3 +241,102 @@ textarea {
 textarea::placeholder {
   opacity: 0.7;
 }
+
+.Toastify__toast-body {
+  word-break: break-all;
+}
+
+.text-truncate {
+  overflow: hidden !important;
+  text-overflow: ellipsis !important;
+  white-space: nowrap !important;
+  display: block !important;
+  min-width: 0 !important;
+}
+
+.text-truncate-flex {
+  overflow: hidden !important;
+  text-overflow: ellipsis !important;
+  white-space: nowrap !important;
+  flex: 1 1 0% !important;
+  min-width: 0 !important;
+}
+
+.MuiTypography-noWrap {
+  min-width: 0 !important;
+}
+
+.w-100 {
+  width: 100% !important;
+}
+
+.text-left {
+  text-align: left !important;
+}
+
+.fw-600 {
+  font-weight: 600 !important;
+}
+
+.recent-activity-truncate {
+  display: inline-block !important;
+  max-width: 300px !important;
+  vertical-align: bottom !important;
+}
+
+.d-inline-block {
+  display: inline-block !important;
+}
+
+.align-bottom {
+  vertical-align: bottom !important;
+}
+
+.text-truncate-block {
+  display: block;
+  max-width: 100%;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+
+.text-truncate-inline {
+  display: inline-block;
+  max-width: 100%;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  vertical-align: bottom;
+}
+
+.flex-center-gap {
+  display: flex;
+  align-items: center;
+  gap: 0.5rem;
+  width: 100%;
+}
+
+.text-black-no-decoration {
+  color: black !important;
+  text-decoration: none !important;
+}
+
+.max-100 {
+  max-width: 100% !important;
+}
+
+.fw-normal {
+  font-weight: normal !important;
+}
+
+.text-left {
+  text-align: left !important;
+}
+
+.fw-600 {
+  font-weight: 600 !important;
+}
+
+.min-w-0 {
+  min-width: 0 !important;
+}

Review Comment:
   1)Fixed the crash by adding optional chaining (...params.inputProps?.style 
?? {}) in both editor files, and verified that all 11 failing test suites are 
now passing.
   
   2)Added the missing .fw-bold class to index.scss to restore the proper bold 
styling for search match highlights.
   
   3)Extracted the duplicated autocomplete inline styling into a single 
.autocomplete-option-label SCSS class and updated all 5 editor/form components 
to use it.
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to