Skip to content

Commit

Permalink
Update media/CfgEditor/index.js
Browse files Browse the repository at this point in the history
Co-authored-by: Seungho Henry Park <[email protected]>
  • Loading branch information
dayo09 and shs-park authored Sep 26, 2023
1 parent 32a1fcf commit 3485a0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion media/CfgEditor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,9 @@ function registerOptimizeOptions() {
});

for (const optName in oneOptimizationList) {
if (Object.prototype.hasOwnProperty.call(oneOptimizationList, optName)) {
if (!Object.prototype.hasOwnProperty.call(oneOptimizationList, optName)) {
continue;
}
let row = document.createElement("vscode-data-grid-row");

let cellSwitch = document.createElement("vscode-data-grid-cell");
Expand Down

0 comments on commit 3485a0e

Please sign in to comment.