Skip to content

Commit cd64165

Browse files
authored
Merge pull request #1336 from marmelab/fix_disabling_views
[RFR] Fix disabling views
2 parents bfa8e70 + ec0eda1 commit cd64165

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
CHANGELOG
22
=========
3+
v1.0.5 - 5 Apr. 2017
4+
---------------------
5+
6+
- Fix view disabling not working on initialized views
7+
[\#1334](https://github.com/marmelab/ng-admin/pull/1336)
8+
([floo51](https://github.com/floo51))
39

410
v1.0.3 - 3 Apr. 2017
511
---------------------

examples/blog/config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@
8484
.baseApiUrl('http://localhost:3000/') // The base API endpoint can be customized by entity
8585
.identifier(nga.field('id')); // you can optionally customize the identifier used in the api ('id' by default)
8686

87-
var tag = nga.entity('tags')
88-
.readOnly(); // a readOnly entity has disabled creation, edition, and deletion views
87+
var tag = nga.entity('tags');
8988

9089
var subCategories = [
9190
{ category: 'tech', label: 'Computers', value: 'computers' },

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-admin",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"license": "MIT",
55
"private": false,
66
"main": "lib/javascripts/ng-admin.js",
@@ -14,7 +14,7 @@
1414
"lib/"
1515
],
1616
"dependencies": {
17-
"admin-config": "~0.12.1",
17+
"admin-config": "~0.12.2",
1818
"angular": "~1.6.1",
1919
"angular-numeraljs": "^1.1.6",
2020
"angular-sanitize": "^1.3.15",

0 commit comments

Comments
 (0)