Ignore missing ContentDescription
This commit is contained in:
parent
e82c7afdae
commit
354554e843
@ -33,7 +33,9 @@ class RoomActivePollsController @Inject constructor(
|
|||||||
var listener: Listener? = null
|
var listener: Listener? = null
|
||||||
|
|
||||||
override fun buildModels(data: List<PollSummary.ActivePoll>?) {
|
override fun buildModels(data: List<PollSummary.ActivePoll>?) {
|
||||||
if (data == null) return
|
if (data.isNullOrEmpty()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
val host = this
|
val host = this
|
||||||
data.forEach { poll ->
|
data.forEach { poll ->
|
||||||
|
@ -25,7 +25,8 @@
|
|||||||
android:src="@drawable/ic_attachment_poll"
|
android:src="@drawable/ic_attachment_poll"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/pollActiveDate"
|
app:layout_constraintTop_toBottomOf="@id/pollActiveDate"
|
||||||
app:tint="?vctr_content_secondary" />
|
app:tint="?vctr_content_secondary"
|
||||||
|
tools:ignore="ContentDescription" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/pollActiveTitle"
|
android:id="@+id/pollActiveTitle"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user