Prechádzať zdrojové kódy

Update Timeline component

Daniel Supernault 6 rokov pred
rodič
commit
3bfee40d69
1 zmenil súbory, kde vykonal 3 pridanie a 11 odobranie
  1. 3 11
      resources/assets/js/components/Timeline.vue

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

@@ -206,11 +206,11 @@
 						<!-- <div class="custom-control custom-switch mb-3">
 							<input type="checkbox" class="custom-control-input" id="mode-dark" v-on:click="modeDarkToggle()" v-model="modes.dark">
 							<label class="custom-control-label font-weight-bold" for="mode-dark">Dark Mode</label>
-						</div> -->
+						</div>
 						<div class="custom-control custom-switch mb-3">
 							<input type="checkbox" class="custom-control-input" id="mode-notify" v-on:click="modeNotifyToggle()"  v-model="!modes.notify">
 							<label class="custom-control-label font-weight-bold" for="mode-notify">Disable Notifications</label>
-						</div>
+						</div> -->
 						<div class="custom-control custom-switch">
 							<input type="checkbox" class="custom-control-input" id="mode-infinite" v-on:click="modeInfiniteToggle()" v-model="modes.infinite">
 							<label class="custom-control-label font-weight-bold" for="mode-infinite">Enable Infinite Scroll</label>
@@ -341,15 +341,7 @@
 		mounted() {
 			this.$nextTick(function () {
 				$('[data-toggle="tooltip"]').tooltip()
-				let cachedSettings = window.ls.get('pixelfed-classicui-settings');
-				if(cachedSettings.length && cachedSettings.hasOwnProperty('notify')) {
-					this.modes = cachedSettings;
-				} else {
-					window.ls.set('pixelfed-classicui-settings', this.modes);
-				}
-				if(cachedSettings.notify == true) {
-					this.fetchNotifications();
-				}
+				this.fetchNotifications();
 			});
 		},