Skip to content

Commit

Permalink
[license-dialog] Fixed the retrieving of the selected license's ID fr…
Browse files Browse the repository at this point in the history
…om the license update dialog.
  • Loading branch information
fajardoleo committed Oct 23, 2024
1 parent b76f277 commit f454c05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion start.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @var string
*/
$this_sdk_version = '2.9.0';
$this_sdk_version = '2.9.0.1';

#region SDK Selection Logic --------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion templates/forms/license-activation.php
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ function registerEventHandlers() {
licenseKey = $otherLicenseKey.val();
} else {
if ( ! hasLicensesDropdown ) {
licenseID = $availableLicenseKey.data( 'id' );
licenseID = $availableLicenseKey.data( 'id' ).toString();
} else {
licenseID = $licensesDropdown.val();
}
Expand Down

0 comments on commit f454c05

Please sign in to comment.