Skip to content

Commit fe560e1

Browse files
committed
Quick fix on syntax
1 parent 30d9247 commit fe560e1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/CreateRoom.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ export default {
1818
]),
1919
methods: {
2020
createRoom() {
21-
let roomName = slugify(this.$refs.name.value, '-');
22-
23-
this.$router.push({
21+
let roomName = slugify(this.$refs.name.value, '-');
22+
23+
this.$router.push({
2424
name: 'channel',
2525
params: {
2626
channelSlug: roomName
2727
}
28-
})
28+
})
2929
}
3030
}
3131
}

0 commit comments

Comments
 (0)