fix bugs with boot order interface

This commit is contained in:
2025-09-25 00:27:00 +00:00
parent 3f723394c4
commit fc42de2c49
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ class DraggableContainer extends HTMLElement {
get value () {
const value = [];
this.content.childNodes.forEach((element) => {
this.content.querySelectorAll(".draggable-item").forEach((element) => {
if (element.dataset.value) {
value.push(element.dataset.value);
}