File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ function initRepoProjectColumnEdit(writableProjectBoard: Element): void {
8888 const attrDataColumnColor = 'data-modal-project-column-color-input' ;
8989
9090 // the "new" button is not in project board, so need to query from document
91- queryElems ( document , '.show-project-column-modal-edit' , ( el : Element ) => {
91+ queryElems ( document , '.show-project-column-modal-edit' , ( el ) => {
9292 el . addEventListener ( 'click' , ( ) => {
9393 elColumnId . value = el . getAttribute ( attrDataColumnId ) ;
9494 elColumnTitle . value = el . getAttribute ( attrDataColumnTitle ) ;
@@ -97,7 +97,7 @@ function initRepoProjectColumnEdit(writableProjectBoard: Element): void {
9797 } ) ;
9898 } ) ;
9999
100- elForm . addEventListener ( 'submit' , async ( e : SubmitEvent ) => {
100+ elForm . addEventListener ( 'submit' , async ( e ) => {
101101 e . preventDefault ( ) ;
102102 const columnId = elColumnId . value ;
103103 const actionBaseLink = elForm . getAttribute ( 'data-action-base-link' ) ;
You can’t perform that action at this time.
0 commit comments