-
Notifications
You must be signed in to change notification settings - Fork 5
Hide internal chat tool messages #50
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -71,6 +71,10 @@ body { | |
| background: transparent !important; | ||
| } | ||
|
|
||
| .page-content-chat .adclaw-operate-card { | ||
| display: none !important; | ||
|
Comment on lines
+74
to
+75
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This selector hides every Useful? React with 👍 / 👎. |
||
| } | ||
|
|
||
| .page-content-chat .adclaw-chat-anywhere-welcome-default-prompt { | ||
| background-color: rgba(255, 255, 255, 0.84) !important; | ||
| border: 1px solid rgba(226, 232, 240, 0.72); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The internal-type filter is incomplete: it excludes some tool/runtime events but leaves other non-chat event types unfiltered, so
shouldRenderOutputMessagecan still surface internal execution traffic in history when those message types appear. To match the stated behavior, expand this set (or switch to an explicit allowlist of user-visible message types).Useful? React with 👍 / 👎.