feat(knowledge): add edit button to ProjectTasksScreen app bar

This commit is contained in:
2026-04-04 23:56:40 -04:00
parent e39d31fe43
commit 2ab24a99a8
@@ -88,6 +88,14 @@ class _ProjectTasksScreenState extends ConsumerState<ProjectTasksScreen> {
),
],
),
actions: [
IconButton(
icon: const Icon(Icons.edit_outlined),
tooltip: 'Edit project',
onPressed: () =>
context.push('/projects/${widget.projectId}/edit'),
),
],
),
body: tasksAsync.when(
loading: () => const Center(child: CircularProgressIndicator()),