fix: make file component zoomable on canvas (#9885)

* Removed nopan and nowheel from file renderer

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Carlos Coelho <80289056+carlosrcoelho@users.noreply.github.com>
This commit is contained in:
Lucas Oliveira
2025-10-02 09:47:50 -03:00
committed by GitHub
parent 4177483cb1
commit 150dfa86bf

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="nopan nowheel flex max-h-44 flex-col overflow-y-auto">
<div className="flex max-h-44 flex-col overflow-y-auto">
<FilesRendererComponent
files={files.filter((file) =>
selectedFiles.includes(file.path),