diff options
Diffstat (limited to 'app/routes/band-new.tsx')
| -rw-r--r-- | app/routes/band-new.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/routes/band-new.tsx b/app/routes/band-new.tsx index 0b7e17f..15e072f 100644 --- a/app/routes/band-new.tsx +++ b/app/routes/band-new.tsx @@ -248,15 +248,15 @@ export default function BandNew() { </div> <div className="period-row"> <input + type="month" value={entry.since} onChange={(e) => updateEntry(entry.key, "since", e.target.value)} - placeholder="加入 (例: 2020-04)" /> <span className="period-sep">〜</span> <input + type="month" value={entry.until} onChange={(e) => updateEntry(entry.key, "until", e.target.value)} - placeholder="脱退 (空欄=在籍中)" /> <input className="period-note" |
