소스 검색

try to disable delete button on root disk

andre 4 년 전
부모
커밋
cddd5d203f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/UI/Disk/Buttons/DeleteButton.php

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

@@ -29,7 +29,7 @@ class DeleteButton extends ButtonDataTableModalAction implements ClientArea
     public function initContent()
     {
         $this->initIds('deleteDiskButton');
-        $this->setDisableByColumnValue("Disk 1", true);
+        $this->setDisableByColumnValue("Name", "Disk 1");
         $this->switchToRemoveBtn();
         $this->initLoadModalAction(new DeleteModal());
     }