Skip to content

Commit fcb3ccb

Browse files
committed
fixed subjectType typo, closes mitreid-connect#579
1 parent 265624b commit fcb3ccb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ var ClientFormView = Backbone.View.extend({
679679
clientUri: $('#clientUri input').val(),
680680
applicationType: $('#applicationType input').filter(':checked').val(),
681681
jwksUri: $('#jwksUri input').val(),
682-
subjectType: $('#applicationType input').filter(':checked').val(),
682+
subjectType: $('#subjectType input').filter(':checked').val(),
683683
tokenEndpointAuthMethod: $('#tokenEndpointAuthMethod input').filter(':checked').val(),
684684
responseTypes: responseTypes,
685685
sectorIdentifierUri: $('#sectorIdentifierUri input').val(),

openid-connect-server-webapp/src/main/webapp/resources/js/dynreg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ var DynRegEditView = Backbone.View.extend({
293293
client_uri: $('#clientUri input').val(),
294294
application_type: $('#applicationType input').filter(':checked').val(),
295295
jwks_uri: $('#jwksUri input').val(),
296-
subject_type: $('#applicationType input').filter(':checked').val(),
296+
subject_type: $('#subjectType input').filter(':checked').val(),
297297
token_endpoint_auth_method: $('#tokenEndpointAuthMethod input').filter(':checked').val(),
298298
response_types: responseTypes,
299299
sector_identifier_uri: $('#sectorIdentifierUri input').val(),

0 commit comments

Comments
 (0)