-
Notifications
You must be signed in to change notification settings - Fork 75
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
Add Favorite Button to Traces #173 #281
base: dev
Are you sure you want to change the base?
Conversation
Readme fixes and global colors
Update landing and welcome email, contrib experience, minor fixes
Improve onboarding, fix eval page placeholder
Explicit mapping in labels + frontend improvements
Labeling queues
parse litellm attributes (lmnr-ai#171)
add claude-3-5-haiku to pipeline and prices (lmnr-ai#174)
fix evaluations query in labeling queue (lmnr-ai#176)
Middleware auth, traces page efficiency
fixed post requests (lmnr-ai#185)
improve UI for workspaces + internal fixes
Store label values sent from association properties
Playgrounds v0
* initial work to compare evals * remove unnecessary div * design --------- Co-authored-by: Din <[email protected]>
disable all clickhouse queries for non-full builds (lmnr-ai#213)
update models in pipeline templates to 4o family (lmnr-ai#215)
Fix realtime and manual spans
Labeling queues
Semantic search API, blogs, minor fixes
update rust deps and fix blog images (lmnr-ai#246)
Minor fixes in evals
Allow disabling tracing, search by spans
Events and landing
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.
❌ Changes requested. Reviewed everything up to e5dbcc4 in 1 minute and 26 seconds
More details
- Looked at
130
lines of code in2
files - Skipped
0
files when reviewing. - Skipped posting
2
drafted comments based on config settings.
1. frontend/components/ui/datatable.tsx:105
- Draft comment:
TheaddFavorite
andremoveFavorite
functions are placeholders. Ensure these are implemented in future updates to handle favorite status changes properly. - Reason this comment was not posted:
Confidence changes required:50%
The placeholder functions for adding and removing favorites are not implemented. This is acceptable for now, but should be addressed in future updates.
2. frontend/components/ui/datatable.tsx:160
- Draft comment:
TheFavorite
component is usingrow.toggleSelected()
which is meant for row selection. Consider using a separate state or function to manage the favorite status independently from row selection. - Reason this comment was not posted:
Marked as duplicate.
Workflow ID: wflow_qEEV1bvzgILS7Ukg
Want Ellipsis to fix these issues? Tag @ellipsis-dev
in a comment. You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
Download CSV and JSON,expandable sidebar, resizable LQ UI, new prices
Fix association properties bug and add prompt from ai sdk
@patricksolka apologies didn't have time to look through the pr yet, was flooded with other tasks, but should have time this weekends. In the meantime can you please change target branch to |
Favorite.tsx
lucide-react
, which can be toggled on clickdataTable.tsx
as a new column.Remaining Issue:
row.toggleSelected
function fromRowSelection.ts.
As I am not yet familiar with TanStack, I'm unsure how to separate thetoggleSelected
for the favorite button, or if it's better to manage it with a simpleuseState
-hook instead.Important
Add
Favorite
component toDataTable
for toggling favorite status, with placeholder functions and shared logic issue.Favorite
component todatatable.tsx
as a new column, allowing users to toggle favorite status per row.lucide-react
used inFavorite.tsx
, toggles on click.addFavorite
andremoveFavorite
indatatable.tsx
.Favorite
button sharesrow.toggleSelected
logic with row selection, causing interference.Favorite
component infavorite.tsx
withisSelected
andonToggle
props.This description was created by for e5dbcc4. It will automatically update as commits are pushed.