Skip to content

Commit

Permalink
Levantei novos pontos em que o problema poderia ocorrer no futuro, ap…
Browse files Browse the repository at this point in the history
…liquei as alterações necessárias.
  • Loading branch information
CosmeMoreiraBlip committed Jan 29, 2025
1 parent b7ce744 commit 383492a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default {
}
},
mounted() {
this.replyTooltipText = this.translations.replyTooltipText
this.replyTooltipText = this.translations.replyTooltipText || this.replyTooltipText
},
methods: {
init: function() {
Expand Down
4 changes: 2 additions & 2 deletions src/components/PlainText.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ export default {
replyTooltipText: 'Responder'
}),
mounted() {
this.failedToSendMsg = this.translations.failedToSend
this.failedToSendMsg = this.translations.failedToSend || this.failedToSendMsg
this.showMoreMsg = this.translations.showMore || this.showMoreMsg
this.replyTooltipText = this.translations.replyTooltipText
this.replyTooltipText = this.translations.replyTooltipText || this.replyTooltipText
},
methods: {
init: function() {
Expand Down
6 changes: 3 additions & 3 deletions src/components/UnsuportedContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export default {
}
},
mounted() {
this.unsupportedContentMsg = this.translations.unsupportedContent
this.failedToSendMsg = this.translations.failedToSend
this.replyTooltipText = this.translations.replyTooltipText
this.unsupportedContentMsg = this.translations.unsupportedContent || this.unsupportedContentMsg
this.failedToSendMsg = this.translations.failedToSend || this.failedToSendMsg
this.replyTooltipText = this.translations.replyTooltipText || this.replyTooltipText
}
}
</script>
Expand Down

0 comments on commit 383492a

Please sign in to comment.