little cleanup

This commit is contained in:
@s.roertgen 2025-04-23 11:47:53 +02:00
parent ec9d8bdb1e
commit bb9f829b74
2 changed files with 0 additions and 5 deletions

View file

@ -26,13 +26,9 @@
} }
function handleDndFinalizeColumns(e) { function handleDndFinalizeColumns(e) {
items = e.detail.items; items = e.detail.items;
// store current state // store current state
publishBoard({ ...$currentBoard, items }); publishBoard({ ...$currentBoard, items });
} }
function handleClick(e) {
alert('dragabble elements are still clickable :)');
}
</script> </script>
<div class="flex flex-row items-center justify-between"> <div class="flex flex-row items-center justify-between">

View file

@ -198,7 +198,6 @@ export async function publishBoard(board) {
} }
export async function publishCards(column) { export async function publishCards(column) {
const ndk = getNdk();
column.publishReplaceable(); column.publishReplaceable();
} }