# HG changeset patch # User Alexandre Segura # Date 1493800848 -7200 # Node ID 5e8ef87576ec674c677b38b39dce26bfcc8abe54 # Parent ed793bd67b8994a76dff6a836acdb7f97f74bbcc Show onboarding only when user is authenticated. diff -r ed793bd67b89 -r 5e8ef87576ec src_js/iconolab-bundle/src/components/editor/Canvas.vue --- a/src_js/iconolab-bundle/src/components/editor/Canvas.vue Wed May 03 10:30:49 2017 +0200 +++ b/src_js/iconolab-bundle/src/components/editor/Canvas.vue Wed May 03 10:40:48 2017 +0200 @@ -251,7 +251,7 @@ const onboarding = Cookies.get('__iconolab_onboarding'); - if (!onboarding) { + if (!onboarding && this.isAuthenticated) { setTimeout(() => { this.startOnboarding(); }, 1000);