Skip to content

Commit

Permalink
N21-1805 Hide column classes for migration wizard for instance nbc (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
arnegns authored and virgilchiriac committed Apr 3, 2024
1 parent 21ae9d7 commit c6e3804
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/organisms/administration/ImportUsers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
data-testid="search-role"
/>
</td>
<td>
<td v-if="!isNbc">
<v-text-field
v-model="searchClasses"
type="string"
Expand Down Expand Up @@ -380,7 +380,10 @@ export default {
},
];
if (this.isNbc) {
tableHeaders.splice(2, 1);
return tableHeaders.filter(
(header) =>
header.value !== "loginName" && header.value !== "classNames"
);
}
return tableHeaders;
},
Expand Down

0 comments on commit c6e3804

Please sign in to comment.