Skip to content

Commit

Permalink
테이블 불필요한 필드 제거 및 테이블 리스트 표 UI 이상한거 수정 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
seungh0 authored Jul 5, 2024
1 parent 44089fc commit 14a7194
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Link} from "react-router-dom";
const KeyspaceTableList = ({clusterId, keyspace, tableList}) => {
return (
<div className="table-responsive small">
<table className="table table-sm table-fixed table-lock-height table-hover">
<table className="table table-sm table-hover">
<thead>
<tr className={"table-dark"}>
<th className={"text-center"} scope="col">Name</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,9 @@ const TableInformation = () => {
<table className="table table-sm">
<thead>
<tr>
<th className={"text-center"} scope="col">Table Name</th>
<th className={"text-center"} scope="col">Column Name</th>
<th className={"text-center"} scope="col">Kind</th>
<th className={"text-center"} scope="col">Clustering Order</th>
<th className={"text-center"} scope="col">Position</th>
<th className={"text-center"} scope="col">DataType</th>
</tr>
</thead>
Expand All @@ -152,9 +150,6 @@ const TableInformation = () => {
${info.kind === 'CLUSTERING' && 'table-warning '}
`}
key={infoIndex}>
<td className={"text-center"}>
{info.tableName}
</td>
<th className={"text-center"}>
{info.name}
</th>
Expand All @@ -164,9 +159,6 @@ const TableInformation = () => {
<td className={"text-center"}>
{info.clusteringOrder}
</td>
<td className={"text-center"}>
{info.position}
</td>
<td className={"text-center"}>
{info.dataType}
</td>
Expand Down

0 comments on commit 14a7194

Please sign in to comment.