mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
Fix saving a tag’s date
The `date` function takes the fieldname where a date is stored, not the literal date.
This commit is contained in:
parent
2082e8d462
commit
0d32f16041
@ -49,7 +49,7 @@ class TagFormRequest extends Request
|
||||
|
||||
$data = [
|
||||
'tag' => $this->string('tag'),
|
||||
'date' => $this->date($date),
|
||||
'date' => $this->date('date'),
|
||||
'description' => $this->string('description'),
|
||||
'latitude' => $latitude,
|
||||
'longitude' => $longitude,
|
||||
|
Loading…
Reference in New Issue
Block a user