We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96211bb commit 24bf8aeCopy full SHA for 24bf8ae
web/pages/threads/_id/index.vue
@@ -321,7 +321,10 @@ export default Vue.extend({
321
},
322
computed: {
323
contactIsPhoneNumber(): boolean {
324
- return isValidPhoneNumber(this.$store.getters.getThread.contact)
+ return (
325
+ isValidPhoneNumber(this.$store.getters.getThread.contact) ||
326
+ !isNaN(Number(this.$store.getters.getThread.contact))
327
+ )
328
329
messageVisibility(): string {
330
if (this.hideMessages) {
0 commit comments