소스 검색

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

Frontend ui refactor
daniel 6 년 전
부모
커밋
56c373dc35
3개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. BIN
      public/js/timeline.js
  2. BIN
      public/mix-manifest.json
  3. 1 3
      resources/assets/js/components/Timeline.vue

BIN
public/js/timeline.js


BIN
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();
 			});
 		},