diff --git a/frontend/components/screen/InteractiveDataTable.tsx b/frontend/components/screen/InteractiveDataTable.tsx index 1a6b4991..d5c96785 100644 --- a/frontend/components/screen/InteractiveDataTable.tsx +++ b/frontend/components/screen/InteractiveDataTable.tsx @@ -1775,6 +1775,12 @@ export const InteractiveDataTable: React.FC = ({ case "number": case "decimal": + console.log(`๐Ÿ”ข ์ˆซ์ž ์ปฌ๋Ÿผ ํฌ๋งทํŒ…:`, { + columnName: column.columnName, + widgetType: column.widgetType, + value, + valueType: typeof value, + }); if (value !== null && value !== undefined && value !== "") { const numValue = typeof value === "string" ? parseFloat(value) : value; if (!isNaN(numValue)) {