Skip to content

Commit

Permalink
Merge pull request #859 from simialbi/patch-1
Browse files Browse the repository at this point in the history
Harmonized asset namespace to allow asset compression without errors
  • Loading branch information
kartik-v authored Nov 20, 2018
2 parents 31ccd84 + 853e365 commit 5fdfcfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Log: `yii2-grid`
=======================

**Date:** 19-Nov-2018
- (enh #859): harmonized asset namespaces

## Version 3.2.8

**Date:** 09-Nov-2018
Expand Down
2 changes: 1 addition & 1 deletion src/GridViewAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class GridViewAsset extends AssetBundle
*/
public function init()
{
$this->depends = array_merge(["\\kartik\\dialog\\DialogAsset"], $this->depends);
$this->depends = array_merge(["kartik\\dialog\\DialogAsset"], $this->depends);
$this->setSourcePath(__DIR__ . '/assets');
$this->setupAssets('css', ['css/kv-grid']);
parent::init();
Expand Down

0 comments on commit 5fdfcfc

Please sign in to comment.