fix: add scroll and max height on chosen files on File Component, fixed font weight on start page (#8045)

* Added max  height and scrolling to input file component

* Updated weight of titles
This commit is contained in:
Lucas Oliveira 2025-05-14 14:46:59 -03:00 committed by GitHub
commit f72e910fc5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -1,12 +1,12 @@
{
"name": "langflow",
"version": "1.3.4",
"version": "1.4.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "langflow",
"version": "1.3.4",
"version": "1.4.1",
"dependencies": {
"@chakra-ui/number-input": "^2.1.2",
"@headlessui/react": "^2.0.4",

View file

@ -85,7 +85,7 @@ export const GetStartedProgress: FC<{
<div className="mt-3 h-[10.8rem] w-full">
<div className="mb-2 flex items-center justify-between">
<span
className="text-sm font-semibold"
className="text-sm font-medium"
data-testid="get_started_progress_title"
>
{percentageGetStarted >= 100 ? (

View file

@ -64,7 +64,7 @@ export const HeaderButtons = ({
<IconComponent name="PanelLeftClose" className="h-4 w-4" />
</SidebarTrigger>
<div className="flex-1 text-sm font-semibold">Projects</div>
<div className="flex-1 text-sm font-medium">Projects</div>
<div className="flex items-center gap-1">
<UploadFolderButton
onClick={handleUploadFlowsToFolder}

View file

@ -202,7 +202,7 @@ export default function InputFileComponent({
{ENABLE_FILE_MANAGEMENT && !tempFile ? (
files && (
<div className="relative flex w-full flex-col gap-2">
<div className="flex flex-col">
<div className="nopan nowheel flex max-h-44 flex-col overflow-y-auto">
<FilesRendererComponent
files={files.filter((file) =>
selectedFiles.includes(file.path),