This repository was archived by the owner on Nov 1, 2024. It is now read-only.
File tree 3 files changed +9
-14
lines changed
3 files changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,7 @@ export const PiiForm = ({
57
57
< Radio value = { 'sensitive' } >
58
58
Ja, inneholder personopplysninger
59
59
</ Radio >
60
- { /* Pseudonymization */ }
61
- { false && showAnnotateDatasetTable &&
60
+ { showAnnotateDatasetTable &&
62
61
< div className = "flex items-center gap-x-1" >
63
62
< Switch onChange = { e => {
64
63
setcreatePseudoynimizedView ( e . target . checked )
Original file line number Diff line number Diff line change @@ -46,8 +46,7 @@ export default function User() {
46
46
>
47
47
Legg til nytt innsiktsprodukt
48
48
</ Dropdown . Menu . GroupedList . Item >
49
- { /* Pseudonymization */ }
50
- { false && < Dropdown . Menu . GroupedList . Item
49
+ { < Dropdown . Menu . GroupedList . Item
51
50
className = "text-base flex gap-1 items-center"
52
51
onClick = { async ( ) =>
53
52
await router . push ( '/dataProc/joinableView/new' )
Original file line number Diff line number Diff line change @@ -89,24 +89,21 @@ export const UserPages = () => {
89
89
value = "granted"
90
90
label = "Innvilgede tilganger"
91
91
/>
92
- { /* Pseudonymization */ }
93
- { false &&
94
- < Tabs . Tab
95
- value = "joinable"
96
- label = "Views tilrettelagt for kobling"
97
- />
98
- }
92
+
93
+ < Tabs . Tab
94
+ value = "joinable"
95
+ label = "Views tilrettelagt for kobling"
96
+ />
99
97
</ Tabs . List >
100
98
< Tabs . Panel value = "owner" className = "w-full space-y-2 p-4" >
101
99
< DataproductsList datasets = { data . userInfo . accessable . owned } />
102
100
</ Tabs . Panel >
103
101
< Tabs . Panel value = "granted" className = "w-full space-y-2 p-4" >
104
102
< DataproductsList datasets = { data . userInfo . accessable . granted } />
105
103
</ Tabs . Panel >
106
- { /* Pseudonymization */ }
107
- { false && < Tabs . Panel value = "joinable" className = "w-full p-4" >
104
+ < Tabs . Panel value = "joinable" className = "w-full p-4" >
108
105
< JoinableViewsList />
109
- </ Tabs . Panel > }
106
+ </ Tabs . Panel >
110
107
</ Tabs >
111
108
</ div >
112
109
) ,
You can’t perform that action at this time.
0 commit comments