Fix typos (#404)

* Fix typos: Interupt -> Interrupt

* Fix typos: tempateManagerRow -> templateManagerRow

* Fix some typos

* Fix typos: Convertable -> Convertible

* Fix some typos
This commit is contained in:
Yuta Hayashibe
2024-08-14 02:57:02 +09:00
committed by GitHub
parent d5deb6d2a0
commit 9f3696e70f
10 changed files with 20 additions and 18 deletions

View File

@@ -184,7 +184,7 @@ class ManageTemplates extends ComfyDialog {
'div',
{
dataset: { id: i.toString() },
className: 'tempateManagerRow',
className: 'templateManagerRow',
style: {
display: 'grid',
gridTemplateColumns: '1fr auto',
@@ -206,7 +206,7 @@ class ManageTemplates extends ComfyDialog {
// rearrange the elements
this.element
.querySelectorAll('.tempateManagerRow')
.querySelectorAll('.templateManagerRow')
.forEach((el: HTMLElement, i) => {
var prev_i = Number.parseInt(el.dataset.id)
@@ -329,7 +329,7 @@ class ManageTemplates extends ComfyDialog {
var that = this
setTimeout(function () {
that.element
.querySelectorAll('.tempateManagerRow')
.querySelectorAll('.templateManagerRow')
.forEach((el: HTMLElement, i) => {
el.dataset.id = i.toString()
})