Procházet zdrojové kódy

Merge pull request #1306 from pixelfed/frontend-ui-refactor

Frontend ui refactor
daniel před 6 roky
rodič
revize
56c373dc35
3 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. binární
      public/js/timeline.js
  2. binární
      public/mix-manifest.json
  3. 1 3
      resources/assets/js/components/Timeline.vue

binární
public/js/timeline.js


binární
public/mix-manifest.json


+ 1 - 3
resources/assets/js/components/Timeline.vue

@@ -471,9 +471,7 @@
 			axios.get('/api/v2/config')
 			.then(res => {
 				this.config = res.data;
-				if(window.outerWidth > 767) {
-					this.fetchProfile();
-				}
+				this.fetchProfile();
 				this.fetchTimelineApi();
 			});
 		},