소스 검색

Add input type image to ignored input types

The image input type is just a graphical submit button.
master
부모
커밋
7efbb33f81
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/index.ts

+ 1
- 1
src/index.ts 파일 보기

@@ -39,7 +39,7 @@ const FORM_FIELD_ELEMENT_TAG_NAMES = [TAG_NAME_SELECT, TAG_NAME_TEXTAREA] as con
/**
* Types for button-like `<input>` elements that are not considered as a form field.
*/
const FORM_FIELD_INPUT_EXCLUDED_TYPES = ['submit', 'reset'] as const;
const FORM_FIELD_INPUT_EXCLUDED_TYPES = ['submit', 'reset', 'image'] as const;

/**
* Checks if an element can hold a custom (user-inputted) field value.


불러오는 중...
취소
저장