View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/569 Closes #536 Approved-by: Marie <marie@kaifa.ch> Approved-by: Tess K <me@thvxl.se>
This commit is contained in:
commit
d52d557ead
1 changed files with 3 additions and 1 deletions
|
@ -777,7 +777,9 @@ async function post(ev?: MouseEvent) {
|
|||
if (defaultStore.state.warnMissingAltText) {
|
||||
const filesData = toRaw(files.value);
|
||||
|
||||
const isMissingAltText = filesData.some(file => !file.comment);
|
||||
const isMissingAltText = filesData.filter(
|
||||
file => file.type.startsWith('image/') || file.type.startsWith('video/') || file.type.startsWith('audio/')
|
||||
).some(file => !file.comment);
|
||||
|
||||
if (isMissingAltText) {
|
||||
const { canceled, result } = await os.actions({
|
||||
|
|
Loading…
Reference in a new issue