Skip to content

Commit

Permalink
[Optimize][Web]Optimize task list layout (#3830)
Browse files Browse the repository at this point in the history
Signed-off-by: Zzm0809 <[email protected]>
  • Loading branch information
Zzm0809 authored Sep 24, 2024
1 parent 81db6e4 commit 1f23c38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ const JobTree: React.FC<TreeProps & connect> = (props) => {

{data.length ? (
<DirectoryTree
style={{ ...style, overflowY: 'auto' }}
style={{ ...style, overflowY: 'auto', overflowX: 'hidden' }}
className={'treeList'}
onSelect={(_, info) => onNodeClick(info)}
onRightClick={onRightClick}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const StudioEditor: React.FC<EditorProps & connect> = (props) => {
style={{
position: 'absolute',
top: 15,
right: '10%',
right: '15%',
boxShadow: '0 0 10px #ccc'
}}
>
Expand Down

0 comments on commit 1f23c38

Please sign in to comment.