Add date picker and task improvements

This commit is contained in:
2026-09-10 14:08:54 +02:00
parent cd00f19c4c
commit c520847146
10 changed files with 499 additions and 57 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
use gpui::prelude::*;
use crate::components::button::Dropdown;
use crate::components::date_picker::DatePicker;
use crate::components::input::Input;
use crate::components::modal::ModalFrame;
use crate::theme::ActiveTheme;
@@ -15,7 +16,7 @@ pub(super) fn render_task_detail_modal(
annotation_input: &gpui::Entity<Input>,
description_input: &gpui::Entity<Input>,
project_input: &gpui::Entity<Input>,
due_input: &gpui::Entity<Input>,
due_picker: &gpui::Entity<DatePicker>,
tags_input: &gpui::Entity<Input>,
status_dropdown: &gpui::Entity<Dropdown>,
priority_dropdown: &gpui::Entity<Dropdown>,
@@ -57,7 +58,7 @@ pub(super) fn render_task_detail_modal(
annotation_input,
description_input,
project_input,
due_input,
due_picker,
tags_input,
status_dropdown,
priority_dropdown,