File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export function initCommonGroup() {
7
7
return ;
8
8
}
9
9
10
- document . querySelector ( '.group.settings.options #group_name' ) ?. addEventListener ( 'input' , function ( ) {
10
+ document . querySelector ( '.group.settings.options #group_name' ) ?. addEventListener ( 'input' , function ( this : HTMLInputElement ) {
11
11
const nameChanged = this . value . toLowerCase ( ) !== this . getAttribute ( 'data-group-name' ) . toLowerCase ( ) ;
12
12
toggleElem ( '#group-name-change-prompt' , nameChanged ) ;
13
13
} ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import {fomanticQuery} from '../modules/fomantic/base.ts';
4
4
import { sanitizeRepoName } from './repo-common.ts' ;
5
5
6
6
const { appSubUrl} = window . config ;
7
- const $ = window . $ ;
8
7
function initRepoNewTemplateSearch ( form : HTMLFormElement ) {
9
8
const elSubmitButton = querySingleVisibleElem < HTMLInputElement > ( form , '.ui.primary.button' ) ;
10
9
const elCreateRepoErrorMessage = form . querySelector ( '#create-repo-error-message' ) ;
You can’t perform that action at this time.
0 commit comments