From b4fcffbdf9f01d14a667d8c39408d3f4418e49a6 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 6 Sep 2022 17:11:25 +0200 Subject: [PATCH] Add missing points. --- .../app/features/analytics/plan/UserProperties.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vector/src/main/java/im/vector/app/features/analytics/plan/UserProperties.kt b/vector/src/main/java/im/vector/app/features/analytics/plan/UserProperties.kt index d6fa918b8e..28732c9a42 100644 --- a/vector/src/main/java/im/vector/app/features/analytics/plan/UserProperties.kt +++ b/vector/src/main/java/im/vector/app/features/analytics/plan/UserProperties.kt @@ -45,7 +45,7 @@ data class UserProperties( */ val webMetaSpacePeopleEnabled: Boolean? = null, /** - * The active filter in the All Chats screen + * The active filter in the All Chats screen. */ val allChatsActiveFilter: AllChatsActiveFilter? = null, /** @@ -87,22 +87,22 @@ data class UserProperties( enum class AllChatsActiveFilter { /** - * Filters are activated and All is selected + * Filters are activated and All is selected. */ All, /** - * Filters are activated and Favourites is selected + * Filters are activated and Favourites is selected. */ Favourites, /** - * Filters are activated and People is selected + * Filters are activated and People is selected. */ People, /** - * Filters are activated and Unreads is selected + * Filters are activated and Unreads is selected. */ Unreads, }