Browse Source

snapshot jobs

andre 4 years ago
parent
commit
6ea66c5e02
1 changed files with 4 additions and 4 deletions
  1. 4 4
      app/UI/Vm/Pages/SnapshotTab.php

+ 4 - 4
app/UI/Vm/Pages/SnapshotTab.php

@@ -4,8 +4,8 @@ namespace ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Vm\Pages;
 
 
 use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\ClientArea;
 use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\ClientArea;
 use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\TabsWidget\TabsWidget;
 use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\TabsWidget\TabsWidget;
-use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages\SnapshotRawDataTable;
-use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages\JobRawDataTable;
+use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages\SnapshotDataTable;
+use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages\JobDataTable;
 
 
 class SnapshotTab extends TabsWidget implements ClientArea
 class SnapshotTab extends TabsWidget implements ClientArea
 {
 {
@@ -17,8 +17,8 @@ class SnapshotTab extends TabsWidget implements ClientArea
     public function initContent()
     public function initContent()
     {
     {
         $this->unsetShowTitle();
         $this->unsetShowTitle();
-        $this->addElement(new SnapshotRawDataTable());
-        $this->addElement(new JobRawDataTable());
+        $this->addElement(new SnapshotDataTable());
+        $this->addElement(new JobDataTable());
 
 
     }
     }
 }
 }