cleanup console.logs and moved to proper log level console to make finding stray console.logs easier
This commit is contained in:
parent
e690ce193b
commit
7f9fe6b660
16 changed files with 50 additions and 59 deletions
|
|
@ -61,9 +61,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
optionallyPrompt () {
|
||||
console.log('Triggered')
|
||||
if (this.shouldConfirm) {
|
||||
console.log('SHAWN!!')
|
||||
this.show()
|
||||
} else {
|
||||
this.doMute()
|
||||
|
|
|
|||
|
|
@ -162,7 +162,6 @@ const EmojiPicker = {
|
|||
} else {
|
||||
emojiSizeReal = emojiSizeValue
|
||||
}
|
||||
console.log(emojiSizeReal)
|
||||
|
||||
const fullEmojiSize = emojiSizeReal + (2 * 0.2 * fontSizeMultiplier * 14)
|
||||
this.emojiSize = fullEmojiSize
|
||||
|
|
@ -319,7 +318,6 @@ const EmojiPicker = {
|
|||
return this.emojiSize
|
||||
},
|
||||
itemPerRow () {
|
||||
console.log('CALC', this.emojiSize, this.width)
|
||||
return this.width ? Math.floor(this.width / this.emojiSize) : 6
|
||||
},
|
||||
activeGroupView () {
|
||||
|
|
|
|||
|
|
@ -24,6 +24,6 @@ export const getBookmarkFolderEntries = state => state.bookmarkFolders.allFolder
|
|||
routeObject: { name: 'bookmark-folder', params: { id: folder.id } },
|
||||
labelRaw: folder.name,
|
||||
iconEmoji: folder.emoji,
|
||||
iconEmojiUrl: console.log(folder) || folder.emoji_url,
|
||||
iconEmojiUrl: folder.emoji_url,
|
||||
iconLetter: folder.name[0]
|
||||
}))
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ export default {
|
|||
const serialized = this.cValue.map(x => serializeShadow(x)).join(',')
|
||||
serialized.split(/,/).map(deserializeShadow) // validate
|
||||
const expandedShadow = flattenDeep(findShadow(this.cValue, { dynamicVars: {}, staticVars: this.staticVars }))
|
||||
const fixedShadows = expandedShadow.map(x => ({ ...x, color: console.log(x) || rgb2hex(x.color) }))
|
||||
const fixedShadows = expandedShadow.map(x => ({ ...x, color: rgb2hex(x.color) }))
|
||||
|
||||
if (this.separateInset) {
|
||||
result = {
|
||||
|
|
|
|||
|
|
@ -280,7 +280,6 @@ const Status = {
|
|||
case 'nsfw': return this.$t('status.sensitive_muted')
|
||||
}
|
||||
}
|
||||
console.log(this.status)
|
||||
if (this.muteReasons.length > 1) {
|
||||
return this.$t(
|
||||
'status.multi_reason_mute',
|
||||
|
|
@ -306,7 +305,7 @@ const Status = {
|
|||
const relationshipReblog = reblog && this.$store.getters.relationship(reblog.user.id)
|
||||
return (status.muted && !status.thread_muted) ||
|
||||
// Reprööt of a muted post according to BE
|
||||
(reblog && reblog.muted) ||
|
||||
(reblog && reblog.muted && !reblog.thread_muted) ||
|
||||
// Muted user
|
||||
relationship.muting ||
|
||||
// Muted user of a reprööt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue