unit select box appropriately disabled after saving now.
parent
85a8532cc7
commit
bc4d52dc18
|
@ -653,14 +653,17 @@ var ClientFormView = Backbone.View.extend({
|
||||||
|
|
||||||
if (this.model.get("accessTokenValiditySeconds") == null) {
|
if (this.model.get("accessTokenValiditySeconds") == null) {
|
||||||
$("#access-token-timeout-time", this.$el).prop('disabled',true);
|
$("#access-token-timeout-time", this.$el).prop('disabled',true);
|
||||||
|
$("#access-token-timeout-unit", this.$el).prop('disabled',true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.model.get("refreshTokenValiditySeconds") == null) {
|
if (this.model.get("refreshTokenValiditySeconds") == null) {
|
||||||
$("#refresh-token-timeout-time", this.$el).prop('disabled',true);
|
$("#refresh-token-timeout-time", this.$el).prop('disabled',true);
|
||||||
|
$("#refresh-token-timeout-unit", this.$el).prop('disabled',true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.model.get("idTokenValiditySeconds") == null) {
|
if (this.model.get("idTokenValiditySeconds") == null) {
|
||||||
$("#id-token-timeout-time", this.$el).prop('disabled',true);
|
$("#id-token-timeout-time", this.$el).prop('disabled',true);
|
||||||
|
$("#id-token-timeout-unit", this.$el).prop('disabled',true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// toggle other dynamic fields
|
// toggle other dynamic fields
|
||||||
|
|
Loading…
Reference in New Issue