Skip to content

Commit

Permalink
Let column manage truncation if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
DustinBrett committed Jan 2, 2025
1 parent 1e1f86f commit 780534b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/system/Files/FileEntry/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,8 @@ const FileEntry: FC<FileEntryProps> = ({
/>
) : (
<figcaption>
{!isOnlyFocusedEntry || name.length === truncatedName.length
{!showColumn &&
(!isOnlyFocusedEntry || name.length === truncatedName.length)
? truncatedName
: name}
</figcaption>
Expand Down

0 comments on commit 780534b

Please sign in to comment.