-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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: change color of output inspector when tool mode, change fuzzy search order, fix image download and some minor issues #4625
Merged
Conversation
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
- Refactor chatView component to import useMemo from react - Add FlowRunningSqueleton component to display flow running indicator - fix gagging on flow running
dosubot
bot
added
the
size:L
This PR changes 100-499 lines, ignoring generated files.
label
Nov 14, 2024
CodSpeed Performance ReportMerging #4625 will improve performances by 60.86%Comparing Summary
Benchmarks breakdown
|
Cristhianzl
approved these changes
Nov 15, 2024
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.
lgtm
mfortman11
requested changes
Nov 15, 2024
@@ -11,15 +10,17 @@ const SidebarItemsList = ({ | |||
onDragStart, | |||
sensitiveSort, | |||
}) => { | |||
console.log(dataFilter); |
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.
Remove console log
mfortman11
approved these changes
Nov 15, 2024
diogocabral
pushed a commit
to headlinevc/langflow
that referenced
this pull request
Nov 26, 2024
…arch order, fix image download and some minor issues (langflow-ai#4625) * Fixed output and input radius and icons colors when on tool mode * Replaced output format to be camel case * Fix expand not appearing after minimize and change code * Refactor chatView component and add FlowRunningSqueleton - Refactor chatView component to import useMemo from react - Add FlowRunningSqueleton component to display flow running indicator - fix gagging on flow running * format code * Fixed fuzzy search order * remove console log --------- Co-authored-by: anovazzi1 <otavio2204@gmail.com> Co-authored-by: Cristhian Zanforlin Lousa <cristhian.lousa@gmail.com> Co-authored-by: Mike Fortman <michael.fortman@datastax.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request includes several changes to the
URLComponent
class and associated JSON files to standardize the capitalization of display names and information text.Standardization of capitalization:
src/backend/base/langflow/components/data/url.py
: Updated thedisplay_name
andinfo
properties of theDropdownInput
component to use "Output Format" and "Output Format. Use 'Text' to extract the text from the HTML or 'Raw HTML' for the raw HTML content." respectively.src/backend/base/langflow/initial_setup/starter_projects/Blog Writer.json
: Standardized thedisplay_name
andinfo
properties of theformat
input to "Output Format" and "Output Format. Use 'Text' to extract the text from the HTML or 'Raw HTML' for the raw HTML content." respectively.src/backend/base/langflow/initial_setup/starter_projects/Custom Component Maker.json
: Standardized thedisplay_name
andinfo
properties of theformat
input to "Output Format" and "Output Format. Use 'Text' to extract the text from the HTML or 'Raw HTML' for the raw HTML content." respectively. [1] [2]