mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
7c184f3500
- re-evaluate the validators to be able to hide the warning after 3 seconds (the validators won't let the user select/paste an invalid image; it's just the warning bubble that persisted) - some small cleanups Fixes #16210
14 lines
343 B
QML
14 lines
343 B
QML
import QtQuick 2.15
|
|
|
|
import utils 1.0
|
|
|
|
StatusChatImageValidator {
|
|
id: root
|
|
errorMessage: qsTr("You can only upload %n image(s) at a time", "", Constants.maxUploadFiles)
|
|
|
|
onImagesChanged: {
|
|
root.isValid = images.length <= Constants.maxUploadFiles
|
|
root.validImages = images.slice(0, Constants.maxUploadFiles)
|
|
}
|
|
}
|