Only switch to the participant tab when the token changes not any other detail

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-04-13 17:04:22 +02:00
Родитель a7762280b8
Коммит 2615916239
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -228,15 +228,17 @@ export default {
},
watch: {
conversation() {
conversation(newConversation, oldConversation) {
if (!this.isRenamingConversation) {
this.conversationName = this.conversation.displayName
}
if (this.isOneToOne) {
this.activeTab = 'shared-items'
} else {
this.activeTab = 'participants'
if (newConversation.token !== oldConversation.token) {
if (newConversation.type === CONVERSATION.TYPE.ONE_TO_ONE) {
this.activeTab = 'shared-items'
} else {
this.activeTab = 'participants'
}
}
},