Skip to content

Commit

Permalink
fix(lint): fix two linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maljuburi committed Jun 3, 2022
1 parent bdd4b41 commit 9fa3783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/ui/Chat/TypingIndicator/TypingIndicator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default Vue.extend({
*/
methods: {
checkUsersTyping() {
if (this.users.length <= 3 && this.users.length != 0) {
if (this.users.length <= 3 && this.users.length !== 0) {
return 1
}
if (this.users.length > 3) {
Expand Down
2 changes: 1 addition & 1 deletion components/views/settings/pages/realms/realm/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default Vue.extend({
props: {
realm: {
type: Object as PropType<Realm>,
default: {},
default: () => ({}),
},
},
computed: {
Expand Down

0 comments on commit 9fa3783

Please sign in to comment.