-
Notifications
You must be signed in to change notification settings - Fork 966
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
[BUG] Red Panel in the discover results panel #8316
Comments
I am also facing the same issue. The issue is observed in Chrome and Arc browsers. |
Facing the same issue whenever any log is expanded in legacy mode. |
I am experiencing the same issue with this version of Chrome: Version 129.0.6668.59 (Official Build) (64-bit). The issue has not been observed in Microsoft Edge. |
Duplicate: #8250 |
I am also observing the same issue in brave browser. |
I use managed Opensearch by AWS. I updated OpenSearch version to 2.15 (latest on AWS) and seems the problem is solved with the fix in: #8277 Thanks 🙏 |
Hi all, |
I also encountered this issue on Chrome and Arc
|
hey! |
I'm facing same issue in Microsoft edge browser Version 129.0.2792.65 (Official build) (64-bit) |
I hate doing a "me as well" comment, but given how little traction this has over the last week... its happening to me as well. You can use something like tampermonkey to fix it (function() {
'use strict';
var styles = `
.eui-xScrollWithShadows {
-webkit-mask-image: none !important;
mask-image: none !important;
}
`;
var styleSheet = document.createElement("style")
styleSheet.textContent = styles
document.head.appendChild(styleSheet)
})(); |
Same issue |
Closing as duplicate, please add any comments to #8250 |
Describe the bug
With the latest Chrome 129 browser, the dashboards discover results pane displays a red panel in place of the result values when the results panel is expanded.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The results panel should expand to show details of the document.
OpenSearch Version
2.12.0
Dashboards Version
2.12.0.0
Plugins
SecurityDashboards, ReportDashboards
Host/Environment (please complete the following information):
Additional context
This issue is not observed in the older Chrome browser Version 128.
The text was updated successfully, but these errors were encountered: