Browse Source

fixed device code admin UI

pull/1161/merge
Justin Richer 8 years ago
parent
commit
f0c8b1b235
  1. 2
      openid-connect-server-webapp/src/main/webapp/resources/js/client.js

2
openid-connect-server-webapp/src/main/webapp/resources/js/client.js

@ -867,7 +867,7 @@ var ClientFormView = Backbone.View.extend({
var idTokenValiditySeconds = this.getFormTokenNumberValue($('#idTokenValidityTime input[type=text]').val(), $('#idTokenValidityTime select').val());
var deviceCodeValiditySeconds = this.getFormTokenNumberValue($('#deviceCodeValidityTime input[type=text]').val, $('#deviceCodeValidityTime select').val());
var deviceCodeValiditySeconds = this.getFormTokenNumberValue($('#deviceCodeValidityTime input[type=text]').val(), $('#deviceCodeValidityTime select').val());
var refreshTokenValiditySeconds = null;
if ($('#allowRefresh').is(':checked')) {

Loading…
Cancel
Save