mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-18 10:23:07 +00:00
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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user