remove debug prints
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/pr/woodpecker Pipeline was successful Details

This commit is contained in:
FloatingGhost 2022-11-13 23:47:00 +00:00
parent f9ed8147eb
commit b6bf8876a5
6 changed files with 4 additions and 8 deletions

View File

@ -227,7 +227,7 @@ const Attachment = {
this.$emit('resize', newHeight) this.$emit('resize', newHeight)
}, },
postStatus (event) { postStatus (event) {
console.log(this.statusForm.postStatus(event, this.statusForm.newStatus)) this.statusForm.postStatus(event, this.statusForm.newStatus)
} }
} }
} }

View File

@ -175,7 +175,6 @@ const SettingsModal = {
return this.$store.state.config.expertLevel > 0 return this.$store.state.config.expertLevel > 0
}, },
set (value) { set (value) {
console.log(value)
this.$store.dispatch('setOption', { name: 'expertLevel', value: value ? 1 : 0 }) this.$store.dispatch('setOption', { name: 'expertLevel', value: value ? 1 : 0 })
} }
} }

View File

@ -753,7 +753,6 @@ export default {
selected () { selected () {
this.selectedTheme = Object.entries(this.availableStyles).find(([k, s]) => { this.selectedTheme = Object.entries(this.availableStyles).find(([k, s]) => {
if (Array.isArray(s)) { if (Array.isArray(s)) {
console.log(s[0] === this.selected, this.selected)
return s[0] === this.selected return s[0] === this.selected
} else { } else {
return s.name === this.selected return s.name === this.selected

View File

@ -71,7 +71,6 @@ export default {
return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus` return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus`
}, },
loggedIn () { loggedIn () {
console.log({ ...this.$store.state.users.currentUser })
return this.$store.state.users.currentUser return this.$store.state.users.currentUser
}, },
dailyAvg () { dailyAvg () {

View File

@ -62,7 +62,7 @@ export default function createPersistedState ({
} }
loaded = true loaded = true
} catch (e) { } catch (e) {
console.log("Couldn't load state") console.error("Couldn't load state")
console.error(e) console.error(e)
loaded = true loaded = true
} }
@ -83,8 +83,8 @@ export default function createPersistedState ({
}) })
} }
} catch (e) { } catch (e) {
console.log("Couldn't persist state:") console.error("Couldn't persist state:")
console.log(e) console.error(e)
} }
}) })
} }

View File

@ -1,7 +1,6 @@
import { promiseInterval } from '../promise_interval/promise_interval.js' import { promiseInterval } from '../promise_interval/promise_interval.js'
const startFetching = ({ credentials, store }) => { const startFetching = ({ credentials, store }) => {
console.log('startFetching: Config')
const boundFetchAndUpdate = () => store.dispatch('getSettingsProfile') const boundFetchAndUpdate = () => store.dispatch('getSettingsProfile')
boundFetchAndUpdate() boundFetchAndUpdate()
return promiseInterval(boundFetchAndUpdate, 10 * 60000) return promiseInterval(boundFetchAndUpdate, 10 * 60000)