This is an automated email from the ASF dual-hosted git repository. kgabryje pushed a commit to branch folders in repository https://gitbox.apache.org/repos/asf/superset.git
commit 0f4a6bd3da52c06b0f32c32f5d7ba92bb160211b Author: Kamil Gabryjelski <[email protected]> AuthorDate: Thu Jan 29 17:26:52 2026 +0100 Fix nested folder indentation --- .../src/components/Datasource/FoldersEditor/TreeItem.styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/components/Datasource/FoldersEditor/TreeItem.styles.ts b/superset-frontend/src/components/Datasource/FoldersEditor/TreeItem.styles.ts index 5e1f4febc41..b28fa0fe985 100644 --- a/superset-frontend/src/components/Datasource/FoldersEditor/TreeItem.styles.ts +++ b/superset-frontend/src/components/Datasource/FoldersEditor/TreeItem.styles.ts @@ -187,8 +187,8 @@ export const EmptyFolderDropZone = styled.div<{ isForbidden: boolean; }>` ${({ theme, depth, isOver, isForbidden }) => css` - margin: ${theme.marginXS}px - ${depth * ITEM_INDENTATION_WIDTH + theme.marginMD}px 0; + margin: ${theme.marginXS}px ${theme.marginMD}px 0; + margin-left: ${depth * FOLDER_INDENTATION_WIDTH + ITEM_INDENTATION_WIDTH}px; padding: ${theme.paddingLG}px; border: 2px dashed ${isOver
