Browse Source

Merge pull request #233 from colinin/4.2

fix persisted-grants
pull/252/head
cKey 5 years ago
committed by GitHub
parent
commit
2e3e0f2d46
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      vueJs/src/views/admin/identityServer/persisted-grants/components/PersistedGrantProfile.vue
  2. 2
      vueJs/src/views/admin/identityServer/persisted-grants/index.vue

2
vueJs/src/views/admin/identityServer/persisted-grants/components/PersistedGrantProfile.vue

@ -138,7 +138,7 @@ export default class extends Mixins(HttpProxyMiXin) {
service: 'IdentityServer', service: 'IdentityServer',
controller: 'PersistedGrant', controller: 'PersistedGrant',
action: 'GetAsync', action: 'GetAsync',
data: { params: {
id: this.id id: this.id
} }
}).then(res => { }).then(res => {

2
vueJs/src/views/admin/identityServer/persisted-grants/index.vue

@ -195,7 +195,7 @@ export default class extends mixins(DataListMiXin, HttpProxyMiXin) {
service: 'IdentityServer', service: 'IdentityServer',
controller: 'PersistedGrant', controller: 'PersistedGrant',
action: 'DeleteAsync', action: 'DeleteAsync',
data: { params: {
id: id id: id
} }
}).then(() => { }).then(() => {

Loading…
Cancel
Save