Fixes #934 - Scheduled items now drop into the right days

This commit is contained in:
James Brooks
2015-09-04 08:18:10 +01:00
parent 860457bfae
commit 0851427f2d
4 changed files with 37 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ class Incident extends Model implements HasPresenter
*/
public function getIsScheduledAttribute()
{
return $this->getOriginal('scheduled_at');
return $this->getOriginal('scheduled_at') !== null;
}
/**