- fixed setup wizard

This commit is contained in:
Peter Papp
2021-04-06 10:10:38 +02:00
parent f531ffce11
commit 90c0466cd0
2 changed files with 3 additions and 3 deletions

View File

@@ -418,7 +418,7 @@ class SetupWizardController extends Controller
$user
->settings()
->create([
'storage_capacity' => get_setting('storage_default'),
'storage_capacity' => get_setting('storage_default') ?? 5,
'avatar' => store_avatar($request, 'avatar'),
'name' => $request->name,
]);

4
webpack.mix.js vendored
View File

@@ -28,7 +28,7 @@ mix.js('resources/js/main.js', 'public/js')
output: {
chunkFilename: '[name].js?id=[chunkhash]',
},
devtool: 'inline-source-map',
//devtool: 'inline-source-map',
devServer: {
clientLogLevel: 'none'
}
@@ -38,7 +38,7 @@ mix.js('resources/js/main.js', 'public/js')
host: '192.168.1.198',
port: '8080'
},
}*/
})*/
.disableNotifications();
if (mix.inProduction()) {