Преглед на файлове

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