From c7a135dda292d9d261b6735a2196bb8411a809e4 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Thu, 18 Feb 2016 18:01:08 +0000 Subject: [PATCH] Fix new post->tags transition refs #6483, closes #6541 - removes unloading of all tags when entering the tags screen. Tags list will now function similarly to the content list where already-loaded tags are visible immediately. Fixes #6483 because it prevents selectize's data being changed out from underneath it before it's destroyed. --- ghost/admin/app/routes/settings/tags.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/ghost/admin/app/routes/settings/tags.js b/ghost/admin/app/routes/settings/tags.js index af2b9a0e3a..a4b19f55bd 100644 --- a/ghost/admin/app/routes/settings/tags.js +++ b/ghost/admin/app/routes/settings/tags.js @@ -30,8 +30,6 @@ export default AuthenticatedRoute.extend(CurrentUserSettings, PaginationRoute, S }, model() { - this.store.unloadAll('tag'); - return this.loadFirstPage().then(() => { return this.store.filter('tag', (tag) => { return !tag.get('isNew');