mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -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 = [
|
$data = [
|
||||||
'tag' => $this->string('tag'),
|
'tag' => $this->string('tag'),
|
||||||
'date' => $this->date($date),
|
'date' => $this->date('date'),
|
||||||
'description' => $this->string('description'),
|
'description' => $this->string('description'),
|
||||||
'latitude' => $latitude,
|
'latitude' => $latitude,
|
||||||
'longitude' => $longitude,
|
'longitude' => $longitude,
|
||||||
|
Loading…
Reference in New Issue
Block a user