소스 검색

fix: Add `title` attribute to the modal close button (#5521)

Add `title` attribute to the modal close button
José dBruxelles 2 년 전
부모
커밋
54c7ec416a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/components/Dialog.tsx

+ 1 - 0
src/components/Dialog.tsx

@@ -85,6 +85,7 @@ export const Dialog = (props: DialogProps) => {
           <button
             className="Modal__close"
             onClick={onClose}
+            title={t("buttons.close")}
             aria-label={t("buttons.close")}
           >
             {useDevice().isMobile ? back : close}