Skip to content

Commit

Permalink
Improve naming consistancy
Browse files Browse the repository at this point in the history
  • Loading branch information
m2de committed Sep 1, 2018
1 parent 1b980fa commit 1db7d0d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "silvanite/nova-field-checkboxes",
"name": "silvanite/novafieldcheckboxes",
"description": "A Laravel Nova field to display a number of multi-select options using checkboxes.",
"keywords": [
"laravel",
Expand Down
2 changes: 1 addition & 1 deletion src/Checkboxes.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Checkboxes extends Field
*
* @var string
*/
public $component = 'nova-field-checkboxes';
public $component = 'novafieldcheckboxes';

/**
* Specify the available options
Expand Down
4 changes: 2 additions & 2 deletions src/FieldServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class FieldServiceProvider extends ServiceProvider
public function boot()
{
Nova::serving(function (ServingNova $event) {
Nova::script('nova-field-checkboxes', __DIR__.'/../dist/js/field.js');
Nova::style('nova-field-checkboxes', __DIR__.'/../dist/css/field.css');
Nova::script('novafieldcheckboxes', __DIR__.'/../dist/js/field.js');
Nova::style('novafieldcheckboxes', __DIR__.'/../dist/css/field.css');
});
}

Expand Down

0 comments on commit 1db7d0d

Please sign in to comment.