Change description field to textarea in Add New Feature modal

The description field in the Add New Feature modal is now a textarea instead of
an input, allowing users to enter multi-line feature descriptions more easily.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Cody Seibert
2025-12-08 22:53:33 -05:00
parent 9392422d35
commit 7bfc489efa
23 changed files with 1319 additions and 1382 deletions

View File

@@ -11,10 +11,10 @@ from pathlib import Path
def count_passing_tests(project_dir: Path) -> tuple[int, int]:
"""
Count passing and total tests in feature_list.json.
Count passing and total tests in .automaker/feature_list.json.
Args:
project_dir: Directory containing feature_list.json
project_dir: Directory containing .automaker/feature_list.json
Returns:
(passing_count, total_count)
@@ -54,4 +54,4 @@ def print_progress_summary(project_dir: Path) -> None:
percentage = (passing / total) * 100
print(f"\nProgress: {passing}/{total} tests passing ({percentage:.1f}%)")
else:
print("\nProgress: feature_list.json not yet created")
print("\nProgress: .automaker/feature_list.json not yet created")