fix: Fix typos

This commit is contained in:
Yuta Hayashibe
2024-10-14 16:13:26 +09:00
parent 1294ba9d61
commit 12516c8a45
9 changed files with 10 additions and 10 deletions

View File

@@ -198,7 +198,7 @@
saveAs(blob, `${model.id}-${Date.now()}.json`);
};
const positionChangeHanlder = async () => {
const positionChangeHandler = async () => {
// Get the new order of the models
const modelIds = Array.from(document.getElementById('model-list').children).map((child) =>
child.id.replace('model-item-', '')
@@ -248,7 +248,7 @@
animation: 150,
onUpdate: async (event) => {
console.log(event);
positionChangeHanlder();
positionChangeHandler();
}
});
}