Merge pull request 'fix(테이블타입): IDX/label API payload key snake_case 통일' (#14) from johngreen into main
Build & Deploy to K8s / build-and-deploy (push) Successful in 7m1s

This commit was merged in pull request #14.
This commit is contained in:
2026-05-13 23:20:22 +00:00
@@ -756,7 +756,7 @@ export default function TableManagementPage() {
if (tableLabel !== selectedTable || tableDescription) {
try {
await apiClient.put(`/table-management/tables/${selectedTable}/label`, {
displayName: tableLabel,
display_name: tableLabel,
description: tableDescription,
});
} catch (error) {
@@ -1055,8 +1055,8 @@ export default function TableManagementPage() {
const action = checked ? "create" : "drop";
try {
const response = await apiClient.post(`/table-management/tables/${selectedTable}/indexes`, {
columnName,
indexType,
column_name: columnName,
index_type: indexType,
action,
});
if (response.data.success) {