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
19 lines
456 B
QML
19 lines
456 B
QML
import QtQuick 2.15
|
|
|
|
import utils 1.0
|
|
|
|
StatusChatImageValidator {
|
|
id: root
|
|
|
|
onImagesChanged: {
|
|
let isValid = true
|
|
root.validImages = images.filter(img => {
|
|
const isSmallEnough = Utils.isFilesizeValid(img)
|
|
isValid = isValid && isSmallEnough
|
|
return isSmallEnough
|
|
})
|
|
root.isValid = isValid
|
|
}
|
|
errorMessage: qsTr("Max image size is %1 MB").arg(Constants.maxUploadFilesizeMB)
|
|
}
|