Merge pull request #4051 from MaxLeiter/accessibilityErrors

Add HTML lang and labelled-by field to upload
This commit is contained in:
Pavel Djundik 2020-08-29 11:47:46 +03:00 committed by GitHub
commit eef782fd2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<div id="chat-container" class="window" :data-current-channel="channel.name"> <div id="chat-container" class="window" :data-current-channel="channel.name" lang="">
<div <div
id="chat" id="chat"
:class="{ :class="{

View File

@ -24,6 +24,7 @@
id="upload-input" id="upload-input"
ref="uploadInput" ref="uploadInput"
type="file" type="file"
aria-labelledby="upload"
multiple multiple
@change="onUploadInputChange" @change="onUploadInputChange"
/> />

View File

@ -1,5 +1,5 @@
<!doctype html> <!doctype html>
<html> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">