Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
prevent scene name overflow (#10400)
Browse files Browse the repository at this point in the history
  • Loading branch information
CITIZENDOT authored Jun 18, 2024
1 parent ee03b64 commit 4f7890f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default function ScenesPanel() {
onClick={() => onClickScene(scene)}
/>
<div className="flex items-center justify-between px-4 py-1">
<Text className="text-sm leading-5 dark:text-[#A3A3A3]">{getSceneName(scene)}</Text>
<Text className="truncate text-sm leading-5 dark:text-[#A3A3A3]">{getSceneName(scene)}</Text>
<div className="relative">
<Button
variant="transparent"
Expand Down

0 comments on commit 4f7890f

Please sign in to comment.