mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
Merge pull request #4051 from MaxLeiter/accessibilityErrors
Add HTML lang and labelled-by field to upload
This commit is contained in:
commit
eef782fd2c
3 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<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
|
||||
id="chat"
|
||||
:class="{
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
id="upload-input"
|
||||
ref="uploadInput"
|
||||
type="file"
|
||||
aria-labelledby="upload"
|
||||
multiple
|
||||
@change="onUploadInputChange"
|
||||
/>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
|
|
Loading…
Reference in a new issue