Add context file content textarea with drag and drop support for txt and md files

This commit is contained in:
Cody Seibert
2025-12-09 02:27:48 -05:00
parent e4b45f53f3
commit 4724fab62a
2 changed files with 10 additions and 15 deletions

View File

@@ -67,34 +67,39 @@
"category": "Kanban",
"description": "For the first 10 in progress cards, add shortcut keys 1 through 0 on the keyboard for opening their output modal",
"steps": [],
"status": "backlog"
"status": "in_progress",
"startedAt": "2025-12-09T07:26:41.577Z"
},
{
"id": "feature-1765265001317-4eyqyif9z",
"category": "Kanban",
"description": "Add a delete all button in the verified column header which runs through all verified cards and deletes them with the exact same delete actions. remember to show a confirm delete confirmation dialog before actually deleting.",
"steps": [],
"status": "backlog"
"status": "in_progress",
"startedAt": "2025-12-09T07:26:54.903Z"
},
{
"id": "feature-1765265036114-9oong1mrv",
"category": "Kanban",
"description": "Remove the refresh button from the headers, we should need to ever manually refresh anything if our app is well designed",
"steps": [],
"status": "backlog"
"status": "in_progress",
"startedAt": "2025-12-09T07:26:49.306Z"
},
{
"id": "feature-1765265099914-71eq4x4yl",
"category": "Core",
"description": "Add a ` shortcut to toggle the left side panel (on hover of the toggle show a tool tip with the shortcut info)",
"steps": [],
"status": "backlog"
"status": "in_progress",
"startedAt": "2025-12-09T07:26:51.411Z"
},
{
"id": "feature-1765265179876-5zcrlncdf",
"category": "Kanban",
"description": "Add a button in the backlog header which will just take the top cards and put them into the in progress board (up to the limit of the concurrency of course) so that a user doesn't have to drag each on individually, figure out the best name for it. give it a shortcut as well",
"steps": [],
"status": "backlog"
"status": "in_progress",
"startedAt": "2025-12-09T07:26:45.256Z"
}
]

View File

@@ -351,16 +351,6 @@ export function ContextView() {
</div>
</div>
<div className="flex gap-2">
<Button
variant="outline"
size="sm"
onClick={loadContextFiles}
disabled={isLoading}
data-testid="reload-context"
>
<RefreshCw className="w-4 h-4 mr-2" />
Reload
</Button>
<Button
size="sm"
onClick={() => setIsAddDialogOpen(true)}