Skip to content

Commit

Permalink
update default columns
Browse files Browse the repository at this point in the history
  • Loading branch information
eimrek committed Dec 5, 2024
1 parent 4c58b61 commit c9f690e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/MainPage/loadIndexMc2d.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ import { getSymmetryInfo } from "mc-react-library";
// columns not listed, will be not shown by default and placed at the bottom
const COLUMN_ORDER_AND_SETTINGS = [
{ field: "id", hide: false, width: 120 },
{ field: "formula", hide: false },
{ field: "formula", hide: false, minWidth: 110 },
{ field: "formula_hill", hide: true },
{ field: "num_elements", hide: false },
{ field: "num_atoms", hide: true },
{ field: "prototype", hide: false },
{ field: "num_elements", hide: false, minWidth: 110 },
{ field: "num_atoms", hide: false, minWidth: 110 },
{ field: "prototype", hide: true },
{ field: "space_group_int", hide: false },
{ field: "space_group_number", hide: true },
{ field: "band_gap", hide: false },
{ field: "abundance", hide: false },
{ field: "magnetic_state", hide: true },
{ field: "band_gap", hide: false, minWidth: 110 },
{ field: "abundance", hide: true },
{ field: "magnetic_state", hide: false, minWidth: 110 },
{ field: "total_magnetization", hide: true, minWidth: 130 },
{ field: "absolute_magnetization", hide: true, minWidth: 130 },
{ field: "phonons_unstable", hide: true },
{ field: "phonons_unstable", hide: false },
{ field: "binding_energy_df2", hide: false, minWidth: 140 },
{ field: "binding_energy_rvv10", hide: false },
{ field: "parent_formula", hide: false },
{ field: "parent_space_group_number", hide: true },
{ field: "parent_source_db", hide: false },
{ field: "parent_source_db_id", hide: false },
{ field: "parent_source_db", hide: true },
{ field: "parent_source_db_id", hide: true },
];

const FRONTEND_COLUMNS = [
Expand Down

0 comments on commit c9f690e

Please sign in to comment.