-
Notifications
You must be signed in to change notification settings - Fork 96
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
fix: notebook updates #1485
Merged
Merged
fix: notebook updates #1485
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
44947e2
fix: show compiled query in notebook query results
saravmajestic 46e51ea
fix: handle markdown execution
saravmajestic ee2c227
Merge branch 'master' into fix/notebook-bugs-v2
saravmajestic 2e9a616
Merge branch 'master' into fix/notebook-bugs-v2
saravmajestic 298b940
fix: ai-2180 remove teammates flag in extension
saravmajestic 8ba65b6
fix: AI-2188 use citations component from lib
saravmajestic 10912ec
fix: AI-2188 use citations component from lib
saravmajestic 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
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
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,33 +1,34 @@ | ||
import { A as o, B as t, m as n, p as i, o as r, n as m, r as C, t as T, C as l, E as c, k as p, i as g, h as v, D as L, I as u, x as h, l as B, L as M, P as d, F as A, J as b, H as k, q as y, y as F, z as P, w as x, T as D, G as I, v as S } from "./main.js"; | ||
import { A as o, B as t, m as n, p as i, o as r, q as C, n as m, t as T, v as l, C as c, F as p, k as g, i as v, h as L, D as u, I as h, y as B, l as M, L as d, P as A, G as b, K as k, J as y, r as F, z as P, E as x, x as D, T as I, H as S, w as f } from "./main.js"; | ||
import "reactstrap"; | ||
export { | ||
o as ApiHelper, | ||
t as Badge, | ||
n as CLL, | ||
i as ChatTriggerLink, | ||
r as Chatbot, | ||
C as Citations, | ||
m as CllEvents, | ||
C as CoachForm, | ||
T as CoachFormButton, | ||
l as CodeBlock, | ||
c as ContentCategory, | ||
p as ConversationGroupProvider, | ||
g as ConversationInputForm, | ||
v as ConversationSources, | ||
L as DbtDocs, | ||
u as IconButton, | ||
h as Learnings, | ||
B as Lineage, | ||
M as LoadingButton, | ||
d as PersonalizationScope, | ||
A as TaskLabels, | ||
b as TeamMateActionType, | ||
k as TeamMateAvailability, | ||
y as TeamMateProvider, | ||
F as TeamMates, | ||
P as TeamMatesConfig, | ||
x as TeammateActions, | ||
D as Tooltip, | ||
I as learningSchema, | ||
S as useTeamMateContext | ||
T as CoachForm, | ||
l as CoachFormButton, | ||
c as CodeBlock, | ||
p as ContentCategory, | ||
g as ConversationGroupProvider, | ||
v as ConversationInputForm, | ||
L as ConversationSources, | ||
u as DbtDocs, | ||
h as IconButton, | ||
B as Learnings, | ||
M as Lineage, | ||
d as LoadingButton, | ||
A as PersonalizationScope, | ||
b as TaskLabels, | ||
k as TeamMateActionType, | ||
y as TeamMateAvailability, | ||
F as TeamMateProvider, | ||
P as TeamMates, | ||
x as TeamMatesConfig, | ||
D as TeammateActions, | ||
I as Tooltip, | ||
S as learningSchema, | ||
f as useTeamMateContext | ||
}; |
Large diffs are not rendered by default.
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.
🛠️ Refactor suggestion
Improve import statement readability by using meaningful aliases.
The current use of single-letter aliases (
o
,t
,n
, etc.) makes the code harder to maintain and understand. Consider using more descriptive aliases that reflect the actual component names.