diff options
author | Eugen <eugen@zeonfederated.com> | 2016-09-09 20:54:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-09 20:54:49 +0200 |
commit | de7eb2341a582a3354496eef7e76593e7320108f (patch) | |
tree | 2bcd6ee8b8a460e976e53a1a8d63864c80514504 /app | |
parent | 3cc47beb6e1f646baca64fdf56168e2f2e2bc726 (diff) |
Fix typo in deleteFromTimelines action creator
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/components/actions/timelines.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/actions/timelines.jsx b/app/assets/javascripts/components/actions/timelines.jsx index 1fabe5d2c..4d4122ec7 100644 --- a/app/assets/javascripts/components/actions/timelines.jsx +++ b/app/assets/javascripts/components/actions/timelines.jsx @@ -18,7 +18,7 @@ export function updateTimeline(timeline, status) { }; } -export function deleteFromTimeline(id) { +export function deleteFromTimelines(id) { return { type: TIMELINE_DELETE, id: id |