Skip to content

Commit

Permalink
Add gene column in the Mutations table
Browse files Browse the repository at this point in the history
  • Loading branch information
arishta-dev committed Nov 30, 2024
1 parent 7672a1e commit dc1480f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pages/resultsView/mutation/ResultsViewMutationTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export default class ResultsViewMutationTable extends MutationTable<
public static defaultProps = {
...MutationTable.defaultProps,
columns: [
MutationTableColumnType.GENE,
MutationTableColumnType.STUDY,
MutationTableColumnType.SAMPLE_ID,
MutationTableColumnType.COPY_NUM,
Expand Down Expand Up @@ -191,6 +192,8 @@ export default class ResultsViewMutationTable extends MutationTable<
}
);

this._columns[MutationTableColumnType.GENE].visible = false;

// override default visibility for some columns
this._columns[
MutationTableColumnType.CANCER_TYPE_DETAILED
Expand Down

0 comments on commit dc1480f

Please sign in to comment.