{branchHeaders.map((header, index) => (
-
-
- {/* Create spacing to align with column */}
+
+
{Array.from({ length: header.columnIndex }).map((_, i) => (
{" "}
))}
!
-
+
[{header.branch}]
-
+
))}
);
};
- // Render dirty files section
const renderDirtySection = () => {
if (!dirtyFiles || dirtyFiles.length === 0) {
return null;
@@ -149,22 +447,62 @@ export const GitStatusIndicatorView: React.FC