瀏覽代碼

try to disable delete button on root disk

andre 4 年之前
父節點
當前提交
cbcfa2f4ca
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/UI/Disk/Buttons/DeleteButton.php

+ 1 - 1
app/UI/Disk/Buttons/DeleteButton.php

@@ -32,7 +32,7 @@ class DeleteButton extends ButtonDataTableModalAction implements ClientArea
         $this->setDisableByColumnValue("master", true);
         $this->setDisableByColumnValue("master", true);
         $this->switchToRemoveBtn();
         $this->switchToRemoveBtn();
         $this->initLoadModalAction(new DeleteModal());
         $this->initLoadModalAction(new DeleteModal());
-        $this->addHtmlAttribute(':disabled', true);
+        $this->addClass('disabled');
     }
     }
 
 
 }
 }