add tag_id to fillable to try and fix #810

This commit is contained in:
KodeStar 2022-03-30 13:14:05 +01:00
parent d1c6001fae
commit 9a6dd623db
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ class Item extends Model
//
protected $fillable = [
'title', 'url', 'colour', 'icon', 'appdescription', 'description', 'pinned', 'order', 'type', 'class', 'user_id', 'appid',
'title', 'url', 'colour', 'icon', 'appdescription', 'description', 'pinned', 'order', 'type', 'class', 'user_id', 'tag_id', 'appid',
];

View file

@ -14,7 +14,7 @@ return [
*/
'name' => env('APP_NAME', 'Heimdall'),
'version' => '2.4.8',
'version' => '2.4.9',
/*
|--------------------------------------------------------------------------