Fix padding of tables

This commit is contained in:
DariusIII
2025-10-06 19:43:28 +02:00
parent 24d5625ce9
commit 8d76e5cdc7
3 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ class ApiHelpController extends BasePageController
$this->viewData['meta_description'] = 'View description of the site Nzb Api.';
$this->viewData['catClass'] = Category::class;
return view('apidesc', $this->viewData);
return view('api.apidesc', $this->viewData);
}
/**
@@ -42,6 +42,6 @@ class ApiHelpController extends BasePageController
$this->viewData['meta_description'] = 'View description of the site Nzb version 2 Api.';
$this->viewData['catClass'] = Category::class;
return view('apiv2desc', $this->viewData);
return view('api.apiv2desc', $this->viewData);
}
}