Skip to content

Commit

Permalink
fix(ui): don't save loader results into cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Apr 30, 2018
1 parent 0c7a8df commit 3208844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/@vue/cli-ui/src/components/ClientAddonLoader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default {
apollo: {
clientAddons: {
query: CLIENT_ADDONS,
fetchPolicy: 'no-cache',
manual: true,
result ({ data: { clientAddons } }) {
clientAddons.forEach(this.loadAddon)
Expand Down
1 change: 1 addition & 0 deletions packages/@vue/cli-ui/src/components/LocaleLoader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default {
apollo: {
locales: {
query: LOCALES,
fetchPolicy: 'no-cache',
manual: true,
result ({ data: { locales } }) {
locales.forEach(this.loadLocale)
Expand Down

0 comments on commit 3208844

Please sign in to comment.