diff --git a/dist/ROI.php b/dist/ROI.php
index 4ee81de..f1e99f2 100644
--- a/dist/ROI.php
+++ b/dist/ROI.php
@@ -1132,7 +1132,6 @@ function slotsToDisplay(array $slotMap): array {
-
@@ -1249,7 +1248,6 @@ function slotsToDisplay(array $slotMap): array {
Slots: auftragsbasiert, SIGNED (Storno gibt Slots frei und bucht auf die gleichen Zeiträume zurück).
Storno-Erkennung: Rechnung mit sum_net < 0.
-
@@ -1258,7 +1256,6 @@ function slotsToDisplay(array $slotMap): array {
Debug: verarbeitete Mietpositionen
-
@@ -1309,7 +1306,6 @@ function slotsToDisplay(array $slotMap): array {
Ext-Menge ist Anzahl; Umsatz extern ist anteilig berechnet.
Menge(signed) ist für Peak/Slots relevant (Storno-Rechnung -> negativ).
-
@@ -1504,8 +1500,10 @@ function openSlots(title, payload) {
}
$(function() {
- $('#pivotTable').DataTable({ pageLength: 50, order: [[4,'desc']] });
- $('#detailTable').DataTable({ pageLength: 50, order: [[1,'desc']] });
+ // scrollX: DataTables kümmert sich selbst um horizontales Scrollen der Tabelle,
+ // damit Search/Length/Pagination NICHT mit dem Scrollbalken mitwandern.
+ $('#pivotTable').DataTable({ pageLength: 50, order: [[4,'desc']], scrollX: true });
+ $('#detailTable').DataTable({ pageLength: 50, order: [[1,'desc']], scrollX: true });
$(document).on('click', '.js-hist', function() {
const title = $(this).data('title') || '';