pull/3094/head
LianaHus 6 years ago
parent 8eb9ae2a3f
commit 28223f88cd
  1. 6
      src/app/tabs/compileTab/compilerContainer.js

@ -291,9 +291,9 @@ class CompilerContainer {
? yo`<option value="${build.path}" selected>${build.longVersion}</option>`
: yo`<option value="${build.path}">${build.longVersion}</option>`
if (!option.innerText.includes("nightly") ||
(option.innerText.includes("nightly") && this._view.includeNightlies.checked)) {
this._view.versionSelector.appendChild(option)
if (!option.innerText.includes('nightly') ||
(option.innerText.includes('nightly') && this._view.includeNightlies.checked)) {
this._view.versionSelector.appendChild(option)
}
})
this._view.versionSelector.removeAttribute('disabled')

Loading…
Cancel
Save