Преглед изворни кода

try to disable delete button on root disk

andre пре 4 година
родитељ
комит
2073032e3b
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->switchToRemoveBtn();
         $this->initLoadModalAction(new DeleteModal());
-        $this->addHtmlAttribute('disabled', true)
+        $this->addHtmlAttribute('disabled', true);
     }
 
 }