Rebrand to Card Forge
All checks were successful
Build Docker image / build (push) Successful in 2m26s
Build Docker image / deploy (push) Successful in 3s
Build Docker image / verify (push) Successful in 36s

This commit is contained in:
Roman Krček
2025-07-19 18:46:54 +02:00
parent e587d1099b
commit be47b096d5
10 changed files with 89 additions and 1485 deletions

View File

@@ -61,7 +61,7 @@
console.log('Selected sheet on mount:', $selectedSheet);
// Check if we already have saved mapping data
const recentSheetsData = localStorage.getItem('esn-recent-sheets');
const recentSheetsData = localStorage.getItem('recent-sheets');
if (recentSheetsData) {
try {
@@ -321,7 +321,7 @@
}
try {
const recentSheetsKey = 'esn-recent-sheets';
const recentSheetsKey = 'recent-sheets';
const existingData = localStorage.getItem(recentSheetsKey);
if (existingData) {
@@ -392,7 +392,7 @@
// Save column mapping to localStorage for the selected sheet
try {
const recentSheetsKey = 'esn-recent-sheets';
const recentSheetsKey = 'recent-sheets';
const existingData = localStorage.getItem(recentSheetsKey);
let recentSheets = existingData ? JSON.parse(existingData) : [];