Delete environments permission disabled by default in new app member form
It will be enabled when the user checks the "manage environments" permission. This updates the Jinja and Vue checkbox input components so that Vue can monitor the inpur state.
This commit is contained in:
@@ -3,8 +3,19 @@ import { emitEvent } from '../lib/emitters'
|
||||
export default {
|
||||
name: 'checkboxinput',
|
||||
|
||||
components: {
|
||||
checkboxinput: this,
|
||||
},
|
||||
|
||||
props: {
|
||||
name: String,
|
||||
initialChecked: Boolean,
|
||||
},
|
||||
|
||||
data: function() {
|
||||
return {
|
||||
checked: this.initialChecked,
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
Reference in New Issue
Block a user