Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
disable pseudonymization feature
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvatt committed Nov 20, 2023
1 parent 829bd39 commit f2c87e3
Show file tree
Hide file tree
Showing 4 changed files with 33,301 additions and 9 deletions.
3 changes: 2 additions & 1 deletion components/dataproducts/dataset/piiForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ export const PiiForm = ({
<Radio value={'sensitive'}>
Ja, inneholder personopplysninger
</Radio>
{showAnnotateDatasetTable &&
{/* Pseudonymization */}
{false && showAnnotateDatasetTable &&
<div className="flex items-center gap-x-1">
<Switch onChange={e=>{
setcreatePseudoynimizedView(e.target.checked)
Expand Down
5 changes: 3 additions & 2 deletions components/header/user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,16 @@ export default function User() {
>
Legg til nytt innsiktsprodukt
</Dropdown.Menu.GroupedList.Item>
<Dropdown.Menu.GroupedList.Item
{/* Pseudonymization */}
{false && <Dropdown.Menu.GroupedList.Item
className="text-base flex gap-1 items-center"
onClick={async () =>
await router.push('/dataProc/joinableView/new')
}
>
Koble sammen pseudonymiserte tabeller
</Dropdown.Menu.GroupedList.Item>

}
</Dropdown.Menu.GroupedList>
<Dropdown.Menu.Divider />
<Dropdown.Menu.GroupedList>
Expand Down
Loading

0 comments on commit f2c87e3

Please sign in to comment.