From 5de8f9e9180e9e2e3290a9ab3f1e8f2e792c6545 Mon Sep 17 00:00:00 2001 From: M_Kececi Date: Fri, 19 Jun 2026 23:04:16 +0300 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ui/src/pages/OrderPriceList.vue | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/ui/src/pages/OrderPriceList.vue b/ui/src/pages/OrderPriceList.vue index 7831887..baf87d0 100644 --- a/ui/src/pages/OrderPriceList.vue +++ b/ui/src/pages/OrderPriceList.vue @@ -149,7 +149,13 @@ -
+
Liste Icin Filtre Secin
@@ -1497,8 +1503,9 @@ const stickyLeftMap = computed(() => { const stickyScrollComp = computed(() => { const boundaryName = stickyBoundaryColumnName.value const boundaryCol = allColumns.find((x) => x.name === boundaryName) - return ((stickyLeftMap.value[boundaryName] || 0) + extractWidth(boundaryCol?.style)) * 1.2 + return (stickyLeftMap.value[boundaryName] || 0) + extractWidth(boundaryCol?.style) }) +const stickyLeftWidth = computed(() => stickyScrollComp.value) function isStickyCol (name) { return stickyColumnNameSet.value.has(name) @@ -1798,6 +1805,8 @@ onMounted(() => { .top-x-scroll { flex: 0 0 var(--top-scroll-height); height: var(--top-scroll-height); + width: max(160px, calc(100% - var(--sticky-left-width, 0px))); + margin-left: var(--sticky-left-width, 0px); overflow-x: auto; overflow-y: hidden; background: #f8fafc;