mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 22:37:28 -08:00
Remove unneeded variable
This commit is contained in:
parent
863a346d6e
commit
9f8b8f6cc1
|
@ -17,8 +17,6 @@ class Importer extends Component
|
||||||
{
|
{
|
||||||
use AuthorizesRequests;
|
use AuthorizesRequests;
|
||||||
|
|
||||||
public bool $userIsSuperUser;
|
|
||||||
|
|
||||||
public $files;
|
public $files;
|
||||||
|
|
||||||
public $progress; //upload progress - '-1' means don't show
|
public $progress; //upload progress - '-1' means don't show
|
||||||
|
@ -253,7 +251,6 @@ class Importer extends Component
|
||||||
public function mount()
|
public function mount()
|
||||||
{
|
{
|
||||||
$this->authorize('import');
|
$this->authorize('import');
|
||||||
$this->userIsSuperUser = Auth::user()->isSuperUser();
|
|
||||||
$this->progress = -1; // '-1' means 'don't show the progressbar'
|
$this->progress = -1; // '-1' means 'don't show the progressbar'
|
||||||
$this->progress_bar_class = 'progress-bar-warning';
|
$this->progress_bar_class = 'progress-bar-warning';
|
||||||
\Log::debug("Hey, we are calling MOUNT (in the importer-file) !!!!!!!!"); //fcuk
|
\Log::debug("Hey, we are calling MOUNT (in the importer-file) !!!!!!!!"); //fcuk
|
||||||
|
|
Loading…
Reference in a new issue