From 35762bc4f4fd2463e833848d6cc6a45629e3c2eb Mon Sep 17 00:00:00 2001 From: Docker Config Backup Date: Tue, 29 Jul 2025 15:24:37 +0200 Subject: [PATCH] Save before creating restore point: Periodic backup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auto-saved at 2025-07-29 15:24:37 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- components/timeshift-spreadsheet.tsx | 16 +++++++++++----- logs/auto-commit.log | 2 ++ logs/auto-commit.out.log | 2 ++ 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/components/timeshift-spreadsheet.tsx b/components/timeshift-spreadsheet.tsx index d4fcf80..861cb4c 100644 --- a/components/timeshift-spreadsheet.tsx +++ b/components/timeshift-spreadsheet.tsx @@ -246,10 +246,16 @@ export function TimeshiftSpreadsheet({ teamId, teamName }: TimeshiftSpreadsheetP styles[`${colLetter}1`] = "height: 97px;" } - // Make day names row (row 2) taller + // Make day names row (row 2) taller and add top border from column B onwards for (let col = 0; col < (data[0]?.length || 0); col++) { const colLetter = getExcelColumnName(col) - styles[`${colLetter}2`] = "height: 50px;" + if (col === 0) { + // First column (A) - just height + styles[`${colLetter}2`] = "height: 50px;" + } else { + // All other columns (B onwards) - height + top border + styles[`${colLetter}2`] = "height: 50px; border-top: 1px solid #000000;" + } } // Style header rows @@ -269,9 +275,9 @@ export function TimeshiftSpreadsheet({ teamId, teamName }: TimeshiftSpreadsheetP const colLetter = getExcelColumnName(col) const nextColLetter = getExcelColumnName(col + 1) - // Weekend day name row (row 2) - merged cells - styles[`${colLetter}2`] = "background-color: #ffd966; height: 50px;" // Weekend day name with height - styles[`${nextColLetter}2`] = "background-color: #ffd966; height: 50px;" + // Weekend day name row (row 2) - merged cells with top border + styles[`${colLetter}2`] = "background-color: #ffd966; height: 50px; border-top: 1px solid #000000;" // Weekend day name with height and border + styles[`${nextColLetter}2`] = "background-color: #ffd966; height: 50px; border-top: 1px solid #000000;" // Weekend date columns (rows 3, 4, 5 - year, month, day) for (let row = 3; row <= 5; row++) { diff --git a/logs/auto-commit.log b/logs/auto-commit.log index b541579..040acf9 100644 --- a/logs/auto-commit.log +++ b/logs/auto-commit.log @@ -61,3 +61,5 @@ 2025-07-29 15:01:15 +02:00: 📝 File changed: components/timeshift-spreadsheet.tsx (change) 2025-07-29 15:01:15 +02:00: 📝 File changed: components/timeshift-spreadsheet.tsx (change) 2025-07-29 15:01:45 +02:00: 🔄 Performing auto-commit... +2025-07-29 15:01:52 +02:00: ✅ Auto-commit successful +2025-07-29 15:24:37 +02:00: 🔖 Creating restore point... diff --git a/logs/auto-commit.out.log b/logs/auto-commit.out.log index 964ca15..2e70504 100644 --- a/logs/auto-commit.out.log +++ b/logs/auto-commit.out.log @@ -57,3 +57,5 @@ 2025-07-29 15:01:15 +02:00: 📝 File changed: components/timeshift-spreadsheet.tsx (change) 2025-07-29 15:01:15 +02:00: 📝 File changed: components/timeshift-spreadsheet.tsx (change) 2025-07-29 15:01:45 +02:00: 🔄 Performing auto-commit... +2025-07-29 15:01:52 +02:00: ✅ Auto-commit successful +2025-07-29 15:24:37 +02:00: 🔖 Creating restore point...