mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Merge pull request #1530 from mfcar/fixingScheduleModal
Fixed schedule info when using Prev/Next button
This commit is contained in:
		
						commit
						8c84640484
					
				@ -59,6 +59,14 @@ export default {
 | 
			
		||||
      newMaxNewEpisodesToDownload: 0
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    libraryItem: {
 | 
			
		||||
      immediate: true,
 | 
			
		||||
      handler(newVal) {
 | 
			
		||||
        if (newVal) this.init()
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    isProcessing: {
 | 
			
		||||
      get() {
 | 
			
		||||
@ -176,4 +184,4 @@ export default {
 | 
			
		||||
  height: calc(100% - 80px);
 | 
			
		||||
  max-height: calc(100% - 80px);
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
</style>
 | 
			
		||||
 | 
			
		||||
@ -63,6 +63,14 @@ export default {
 | 
			
		||||
      isValid: true
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    value: {
 | 
			
		||||
      immediate: true,
 | 
			
		||||
      handler(newVal) {
 | 
			
		||||
        this.init()
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    minuteIsValid() {
 | 
			
		||||
      return !(isNaN(this.selectedMinute) || this.selectedMinute === '' || this.selectedMinute < 0 || this.selectedMinute > 59)
 | 
			
		||||
@ -271,6 +279,11 @@ export default {
 | 
			
		||||
        })
 | 
			
		||||
    },
 | 
			
		||||
    init() {
 | 
			
		||||
      this.selectedInterval = 'custom'
 | 
			
		||||
      this.selectedHour = 0
 | 
			
		||||
      this.selectedMinute = 0
 | 
			
		||||
      this.selectedWeekdays = []
 | 
			
		||||
 | 
			
		||||
      if (!this.value) return
 | 
			
		||||
      const pieces = this.value.split(' ')
 | 
			
		||||
      if (pieces.length !== 5) {
 | 
			
		||||
@ -309,4 +322,4 @@ export default {
 | 
			
		||||
    this.init()
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user