Fix bug that prevents users from creating a new oauth application (#1706)
This commit is contained in:
parent
706d55413b
commit
e076172106
|
@ -0,0 +1 @@
|
|||
Fix bug that prevents users from creating a new oauth application (#1706)
|
|
@ -126,12 +126,12 @@ import TranslationsMixin from '@/components/mixins/Translations'
|
|||
export default {
|
||||
mixins: [TranslationsMixin],
|
||||
props: {
|
||||
app: { type: Object, required: false, default: () => { return {} } },
|
||||
app: { type: Object, required: false, default: () => { return null } },
|
||||
defaults: { type: Object, required: false, default: () => { return {} } }
|
||||
},
|
||||
data () {
|
||||
const app = this.app || {}
|
||||
const defaults = this.defaults || {}
|
||||
const app = this.app || {}
|
||||
return {
|
||||
isLoading: false,
|
||||
errors: [],
|
||||
|
|
|
@ -32,9 +32,9 @@ export default {
|
|||
ApplicationForm
|
||||
},
|
||||
props: {
|
||||
name: { type: String, required: true },
|
||||
redirectUris: { type: String, required: true },
|
||||
scopes: { type: Array, required: true }
|
||||
name: { type: String, default: '' },
|
||||
redirectUris: { type: String, default: '' },
|
||||
scopes: { type: String, default: '' }
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
|
|
Loading…
Reference in New Issue