fix: issue where the member list header is not translated

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2023-12-17 17:26:24 +01:00
parent 9e003897a5
commit 63e2f6e9af
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ import androidx.compose.runtime.snapshotFlow
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Brush
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.AnnotatedString
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.font.FontWeight
@ -268,7 +269,7 @@ fun MemberListSheet(
}
Column {
PageHeader(text = "Members")
PageHeader(text = stringResource(R.string.channel_info_sheet_options_members))
LazyColumn {
viewModel.fullItemList.forEachIndexed { index, item ->