Skip to content

Commit

Permalink
HTMLSelectElement doesn't have readOnly attribute. Fixes #650
Browse files Browse the repository at this point in the history
  • Loading branch information
oyejorge committed Nov 3, 2023
1 parent 6d11820 commit dc7a1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { escape_html } from '../utils';
export interface TomInput extends HTMLElement{
tomselect ?: TomSelect;
disabled : boolean;
readOnly : boolean;
readOnly ?: boolean;
required : boolean;
value : string;
type : string;
Expand Down

0 comments on commit dc7a1a6

Please sign in to comment.