From 455d456a5b10dbb0dbc53779832b36c5274ed33f 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. --- core/client/app/routes/settings/tags.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/client/app/routes/settings/tags.js b/core/client/app/routes/settings/tags.js index af2b9a0e3a..a4b19f55bd 100644 --- a/core/client/app/routes/settings/tags.js +++ b/core/client/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');