diff --git a/app/Http/Controllers/ItemController.php b/app/Http/Controllers/ItemController.php index 82b29d9c..0c53e522 100644 --- a/app/Http/Controllers/ItemController.php +++ b/app/Http/Controllers/ItemController.php @@ -363,7 +363,12 @@ class ItemController extends Controller SupportedApps::getFiles($app); SupportedApps::saveApp($app, $localapp); } - } + } else { + SupportedApps::getFiles($app); + $application = new Application; + SupportedApps::saveApp($app, $application); + + } } } //$delete = Application::whereNotIn('appid', $validapps)->delete(); // delete any apps not in list diff --git a/public/css/app.css b/public/css/app.css index 53f14a67..d7d2c312 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -703,6 +703,8 @@ body { max-width: 1000px; width: 100%; margin: 10px 40px; + border-radius: 5px; + overflow: hidden; } .module-container header, .module-container footer { diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 60c7a9ea..4e471a32 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -1,4 +1,4 @@ { - "/css/app.css": "/css/app.css?id=a3356a79f9799651e507", - "/js/app.js": "/js/app.js?id=f18d23b8fc7a094a2c66" -} + "/css/app.css": "/css/app.css?id=d501edaf8c9cc02c173d", + "/js/app.js": "/js/app.js?id=32cbf6f4924b46ae7e05" +} \ No newline at end of file diff --git a/resources/assets/sass/_app.scss b/resources/assets/sass/_app.scss index 8b0f6c0b..c85285c6 100644 --- a/resources/assets/sass/_app.scss +++ b/resources/assets/sass/_app.scss @@ -374,6 +374,8 @@ body { max-width: 1000px; width: 100%; margin: 10px 40px; + border-radius: 5px; + overflow: hidden; header, footer { display: flex; justify-content: space-between;