OSDN Git Service

[update] : disabledがtrueの場合は非表示にする
authorhayao <hayao@fascode.net>
Thu, 15 Jul 2021 09:20:23 +0000 (18:20 +0900)
committerhayao <hayao@fascode.net>
Thu, 15 Jul 2021 09:20:23 +0000 (18:20 +0900)
alter/index.html

index 6d6c6ad..be5dd73 100644 (file)
                 Object.keys(JsonData).forEach((ReleaseId) => {
                     //console.log(JsonData[ReleaseId])
 
+                    if (JsonData[ReleaseId].disabled == true){
+                        return;
+                    }
+
                     // セレクトボックス
                     let ReleaseIdOption = document.createElement("option");
                     ReleaseIdOption.value = ReleaseId;