Skip to content

Commit

Permalink
fix typo on config setting option
Browse files Browse the repository at this point in the history
  • Loading branch information
milewski committed Oct 3, 2019
1 parent 069b8d9 commit ca2b281
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ return [
/**
* If false the default resource manager will coexist with this tool
*/
'disable_default_resource_manage' => true,
'disable_default_resource_manager' => true,

/**
* If true all titles within navigation array will pass through laravel trans helper
Expand Down
2 changes: 1 addition & 1 deletion config/collapsible-resource-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/**
* If false the default resource manager will coexist with this tool
*/
'disable_default_resource_manage' => true,
'disable_default_resource_manager' => true,

/**
* If true all titles within navigation array will pass through laravel trans helper
Expand Down
2 changes: 1 addition & 1 deletion src/CollapsibleResourceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function boot()

Nova::script('collapsible-resource-manager', __DIR__ . '/../dist/js/tool.js');

if (config('collapsible-resource-manager.disable_default_resource_manage', true)) {
if (config('collapsible-resource-manager.disable_default_resource_manager', true)) {

/**
* Remove the default resource manager
Expand Down

0 comments on commit ca2b281

Please sign in to comment.