mirror of
https://github.com/unraid/webgui.git
synced 2026-04-24 02:58:57 -05:00
Merge pull request #1928 from SimonFair/WSDD-option-fix
Disable WSD options if array running.
This commit is contained in:
@@ -77,7 +77,7 @@ _(WSD options [experimental])_:
|
||||
<script>
|
||||
function checkWSDSettings() {
|
||||
form=document.SMBEnable;
|
||||
if (form.USE_WSD.value=="yes") {
|
||||
if (form.USE_WSD.value=="yes" && <?=($var['fsState']=="Started")?> {
|
||||
form.WSD2_OPT.disabled=false;
|
||||
} else {
|
||||
form.WSD2_OPT.disabled=true;
|
||||
|
||||
Reference in New Issue
Block a user