Do not display remove group option when readonly
This commit is contained in:
parent
15ed91ef85
commit
1bc568f634
|
@ -34,15 +34,19 @@
|
|||
|
||||
export let userId
|
||||
|
||||
const groupSchema = {
|
||||
$: groupSchema = {
|
||||
name: {
|
||||
width: "1fr",
|
||||
},
|
||||
_id: {
|
||||
displayName: "",
|
||||
width: "auto",
|
||||
borderLeft: true,
|
||||
},
|
||||
...(readonly
|
||||
? {}
|
||||
: {
|
||||
_id: {
|
||||
displayName: "",
|
||||
width: "auto",
|
||||
borderLeft: true,
|
||||
},
|
||||
}),
|
||||
}
|
||||
const appSchema = {
|
||||
name: {
|
||||
|
|
Loading…
Reference in New Issue