From 77b45849b1a0d7b968594572f56b733c5a262e39 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 24 Aug 2022 22:03:23 +0000 Subject: [PATCH] UI improvements for subscription key generation --- wwwroot/js/app.ravLicense.js | 1 + 1 file changed, 1 insertion(+) diff --git a/wwwroot/js/app.ravLicense.js b/wwwroot/js/app.ravLicense.js index c1b887f..89e0f07 100644 --- a/wwwroot/js/app.ravLicense.js +++ b/wwwroot/js/app.ravLicense.js @@ -135,6 +135,7 @@ app.ravLicense = (function () { const isPerpetual = $("#perpetual").prop("checked"); $("#licenseExpires").prop("checked", !isPerpetual); + $("#licenseExpires").prop("disabled", !isPerpetual); $("#title").text( isPerpetual ? "Perpetual license" : "Subscription license" );