Skip to content
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
697ce9e
fix(calendar): expose proposal context to screen readers
seonghobae Aug 14, 2026
5ad5423
Merge develop into calendar proposal accessibility fix
seonghobae Aug 14, 2026
c7c36b1
Merge protected develop into calendar accessibility slice
seonghobae Aug 15, 2026
ca83ddf
Merge branch 'develop' into ux/coordination-view-a11y-152904938688096…
opencode-agent[bot] Aug 17, 2026
fa3edf2
Merge branch 'develop' into ux/coordination-view-a11y-152904938688096…
seonghobae Aug 17, 2026
9d3bf21
merge(develop): reconcile calendar proposal accessibility onto curren…
cursoragent Aug 17, 2026
85f727b
🎨 Palette: [회의 조율 버튼 접근성 개선]
seonghobae Aug 17, 2026
5972bf7
fix(text-safety): preserve malformed comment sanitization
seonghobae Aug 19, 2026
bbfe4fa
Merge develop into calendar accessibility branch
seonghobae Aug 20, 2026
2e69d95
fix(data): enforce organization scope for document actions
seonghobae Aug 20, 2026
b0aecbc
fix(calendar): restore source-backed coordination flow
seonghobae Aug 20, 2026
7c36053
fix(email): remove inert thread actions
seonghobae Aug 20, 2026
b28e17c
🎨 캘린더 조율 뷰 및 사이드바 버튼 접근성 향상
seonghobae Aug 20, 2026
7070c6f
fix(governance): keep container provenance tied to base pins
seonghobae Aug 20, 2026
596fbca
🎨 캘린더 조율 뷰 및 사이드바 버튼 접근성 향상 (재제출)
seonghobae Aug 20, 2026
3242142
Merge remote-tracking branch 'origin/develop' into review/pr1320-curr…
seonghobae Aug 21, 2026
417d0ea
fix(governance): restore OCI base provenance contract reverted on PR …
seonghobae Aug 24, 2026
7f876eb
fix(sync): restore develop features dropped by branch snapshot commit…
seonghobae Aug 24, 2026
a6edce3
fix(calendar): remove inert sidebar create buttons flagged as dead sp…
seonghobae Aug 24, 2026
2fb5269
fix(email): restore EmailDetail memoization and drop inert thread but…
seonghobae Aug 24, 2026
5b1de38
fix(repo): remove duplicate-case .Jules journal colliding with tracke…
seonghobae Aug 24, 2026
115bba2
🎨 캘린더 접근성 향상 및 최신 develop 병합
seonghobae Aug 24, 2026
e829305
🎨 캘린더 조율 뷰 및 사이드바 컴포넌트 접근성 개선
seonghobae Aug 24, 2026
1a9afa0
🎨 캘린더 사이드바 접근성 개선 및 불필요한 컨트롤 정리
seonghobae Aug 24, 2026
f198ee2
Merge branch 'develop' into ux/coordination-view-a11y-152904938688096…
seonghobae Aug 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions frontend/src/components/calendar/CalendarSidebarLeft.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { Plus } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { calendarDefinitions } from './constants';

type Props = {
Expand All @@ -10,9 +8,7 @@ type Props = {
export function CalendarSidebarLeft({ calendarVisibility, toggleCalendarVisibility }: Props) {
return (
<aside className="w-64 shrink-0 flex-col overflow-y-auto border-r border-border bg-card p-4 hidden lg:flex">
<Button type="button" className="h-10 w-full">
<Plus className="size-4" aria-hidden="true" />새 일정
</Button>


Comment on lines +11 to 12

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Leftover blank lines after button removal

Removing the buttons leaves blank lines at the top of the <aside> and after the list. Purely cosmetic, no behavioral impact.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

<div className="mt-8">
<div className="mb-4 flex items-center justify-between">
Expand All @@ -35,9 +31,7 @@ export function CalendarSidebarLeft({ calendarVisibility, toggleCalendarVisibili
</li>
))}
</ul>
<Button type="button" variant="ghost" className="mt-4 w-full justify-start text-primary hover:text-primary">
<Plus className="size-4" aria-hidden="true" /> 캘린더 추가
</Button>

</div>
</aside>
);
Expand Down
Loading