updated to use .some

This commit is contained in:
KevinWh0 2024-02-19 20:53:13 +01:00
parent 0c28bfdb63
commit 3c4f3cb81d

View file

@ -747,9 +747,9 @@ async function post(ev?: MouseEvent) {
if (defaultStore.state.warnMissingAltText) {
const filesData = toRaw(files.value);
for (let i = 0; i < filesData.length; i++) {
const file = filesData[i];
const isMissingAltText = !file.comment;
const isMissingAltText = filesData.some(file => !file.comment);
if (isMissingAltText) {
const { canceled, result } = await os.actions({
type: 'warning',
@ -765,8 +765,6 @@ async function post(ev?: MouseEvent) {
if (canceled) return;
if (result === 'cancel') return;
break;
}
}
}