Skip to content

Commit 62cf8f5

Browse files
committed
edge case patch
1 parent b17f426 commit 62cf8f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wwwroot/js/genpage/gentab/params.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ function hideUnalteredParameters() {
11871187
let hideParamCallbacks = [];
11881188

11891189
function hideUnsupportableParams() {
1190-
if (!gen_param_types) {
1190+
if (typeof gen_param_types == 'undefined' || !gen_param_types) {
11911191
return;
11921192
}
11931193
let ipadapterInstallButton = document.getElementById('revision_install_ipadapter');

0 commit comments

Comments
 (0)