-
Notifications
You must be signed in to change notification settings - Fork 5
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
feat: new messages endpoint #287
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
4161f37
revert: openapi-ts upgrade
alex-mcgovern 253750b
feat: show all alerts in dashboard table
alex-mcgovern fbb0949
Merge branch 'main' of github.com:stacklok/codegate-ui into feat/new-…
alex-mcgovern 95dc684
refactor: continue replace alerts with messages
alex-mcgovern 6f116c7
fix(project structure): issues with cross-feature leakage
alex-mcgovern 09260cf
fix layout, and beging building conversation summary functionality
alex-mcgovern 7a15dc8
deduplicate alerts & render secrets in conversation summary
alex-mcgovern 20158bc
fix: dial back de-duplication logic
alex-mcgovern 6eebb19
chore: util function for MSW endpoint
alex-mcgovern b789f3c
chore: apply msw endpoint to handlers
alex-mcgovern 02069c0
chore: mockers for API responses
alex-mcgovern c2b3ac3
chore: add eslint rule to enforce safe msw usage
alex-mcgovern 567916a
chore: apply new MSW approach across codebase
alex-mcgovern ad01d09
Merge branch 'chore/safe-msw-endpoint-access' of github.com:stacklok/…
alex-mcgovern d0bae32
Merge branch 'main' of github.com:stacklok/codegate-ui into feat/new-…
alex-mcgovern 39b9102
fix: remove de-duplication logic
alex-mcgovern 22fe4a4
tidy up conversation detail with tabs, add tests
alex-mcgovern a9da343
Merge branch 'main' of github.com:stacklok/codegate-ui into feat/new-…
alex-mcgovern fc934b5
visual improvements to conversation view
alex-mcgovern 2ea3fe5
fix: tests
alex-mcgovern a38d0dc
chore: tidy ups
alex-mcgovern d1165b3
fix flaky test
alex-mcgovern c2a966b
fix vitest & istanbul mismatch causing flakiness
alex-mcgovern File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "https://unpkg.com/knip@5/schema.json", | ||
"entry": ["src/main.tsx"], | ||
"ignore": ["src/api/generated/**/*"], | ||
"ignoreDependencies": ["husky"], | ||
"project": ["src/**/*.{js,jsx,ts,tsx}"] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
nice