1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Rename of the media box tools component, fixing runtime error

This commit is contained in:
2024-03-31 21:55:41 +04:00
parent c22023775a
commit 6bb020bcf3
4 changed files with 41 additions and 18 deletions

View File

@@ -1,9 +1,9 @@
import {createMaintenancePopup} from "$lib/components/MaintenancePopup.js";
import {createMaintenanceTools} from "$lib/components/MaintenanceTools.js";
import {createMediaBoxTools} from "$lib/components/MediaBoxToolsEvents.js";
document.querySelectorAll('.media-box').forEach(mediaBoxElement => {
mediaBoxElement.appendChild(
createMaintenanceTools(
createMediaBoxTools(
createMaintenancePopup()
)
);