Skip to content

Commit

Permalink
fixed issue with menu directive clsoes #361
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar committed Sep 22, 2021
1 parent eea33d4 commit 783696f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
In order to read more about upgrading and BC breaks have a look at the [UPGRADE Document](UPGRADE.md).

## 4.1.1 ()

+ [#361](https://github.com/luyadev/luya-module-cms/issues/361) Fixed an issue where link directive does not load menu data in crud context (without an inital load of the cms view).

## 4.1.0 (21. September 2021)

+ [#360](https://github.com/luyadev/luya-module-cms/pull/360) Changed misleading icon for page properties in dropdown menu.
Expand Down
6 changes: 4 additions & 2 deletions src/admin/resources/dist/main.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/admin/resources/js/cmsadmin.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@

function init() {
if ($scope.menuData.length == 0) {
ServiceMenuData.load();
ServiceMenuData.load().then(function() {
ServiceCurrentWebsite.load();
})
}
}

Expand Down

0 comments on commit 783696f

Please sign in to comment.