1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Cleaned up tag edit interface

This commit is contained in:
Dan Brown
2016-05-14 20:02:00 +01:00
parent b80184cd93
commit 78564ec61d
11 changed files with 160 additions and 33 deletions

View File

@ -60,7 +60,7 @@ class Entity extends Ownable
*/
public function tags()
{
return $this->morphMany(Tag::class, 'entity');
return $this->morphMany(Tag::class, 'entity')->orderBy('order', 'asc');
}
/**