We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b5c76d + acf2a6c commit 640d133Copy full SHA for 640d133
1 file changed
src/views/import/ImportExperiment.vue
@@ -315,7 +315,7 @@ export default class ImportExperiment extends ProgramsBase {
315
}
316
317
previewDataLoaded(dynamicColumns: String[]) {
318
- this.phenotypeColumns = dynamicColumns;
+ this.phenotypeColumns = dynamicColumns.filter(name => !name.includes('ObsUnitID'));
319
this.createObservationIndexMap();
320
321
@@ -357,7 +357,6 @@ export default class ImportExperiment extends ProgramsBase {
357
358
cellClassIfExisting(row: any, column: any) {
359
const index = column.meta.index
360
-
361
if(row.data.observations[this.observationIndexMap.get(index)!].state === 'MUTATED') {
362
return {'class': 'db-filled'};
363
0 commit comments