feat: Add branch name under worktree in session list (if different than worktree name) (#352)
* feat: show branch info in session sidebar and enrich worktrees * feat: refresh sidebar branch display when switching branches in git menu * fix: ensure branch name displays on mobile by fixing flex alignment * style: make branch name font smaller, especially on mobile
This commit is contained in:
@@ -1891,7 +1891,10 @@ export const FilesView: React.FC = () => {
|
||||
value={draftContent}
|
||||
onChange={setDraftContent}
|
||||
extensions={editorExtensions}
|
||||
className="h-full"
|
||||
className={cn(
|
||||
"h-full",
|
||||
isMobile && "[&_.cm-scroller]:pb-[var(--oc-keyboard-inset,0px)]"
|
||||
)}
|
||||
highlightLines={lineSelection
|
||||
? {
|
||||
start: Math.min(lineSelection.start, lineSelection.end),
|
||||
|
||||
Reference in New Issue
Block a user