1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00

Explicit computed properties declaration for section header

This commit is contained in:
sauls8t 2018-02-19 09:46:04 +00:00
parent 3993cfeb8e
commit c705e8c299
6 changed files with 661 additions and 661 deletions

View file

@ -52,7 +52,7 @@ Space view.
## Latest version ## Latest version
v1.57.0 Community edition: v1.57.1
## OS support ## OS support
@ -67,7 +67,7 @@ Documize runs on the following:
Documize is built with the following technologies: Documize is built with the following technologies:
- EmberJS (v2.18.0) - EmberJS (v2.18.0)
- Go (v1.9.4) - Go (v1.10)
...and supports the following databases: ...and supports the following databases:

View file

@ -42,7 +42,7 @@ func main() {
rt.Product = env.ProdInfo{} rt.Product = env.ProdInfo{}
rt.Product.Major = "1" rt.Product.Major = "1"
rt.Product.Minor = "57" rt.Product.Minor = "57"
rt.Product.Patch = "0" rt.Product.Patch = "1"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch) rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = "Community" rt.Product.Edition = "Community"
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition) rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

File diff suppressed because one or more lines are too long

View file

@ -33,7 +33,7 @@ export default Component.extend(ModalMixin, {
emptySearch: computed('docSearchResults', function() { emptySearch: computed('docSearchResults', function() {
return this.get('docSearchResults.length') === 0; return this.get('docSearchResults.length') === 0;
}), }),
hasMenuPermissions: computed('permissions', 'userPendingItem', 'canEdit', 'canMove', 'canDelete', function() { hasMenuPermissions: computed('permissions.{documentCopy,documentTemplate}', 'userPendingItem', 'canEdit', 'canMove', 'canDelete', function() {
let permissions = this.get('permissions'); let permissions = this.get('permissions');
return permissions.get('documentCopy') || permissions.get('documentTemplate') || return permissions.get('documentCopy') || permissions.get('documentTemplate') ||

View file

@ -1,6 +1,6 @@
{ {
"name": "documize", "name": "documize",
"version": "1.57.0", "version": "1.57.1",
"description": "The Document IDE", "description": "The Document IDE",
"private": true, "private": true,
"repository": "", "repository": "",

View file

@ -1,16 +1,16 @@
{ {
"community": "community":
{ {
"version": "1.57.0", "version": "1.57.1",
"major": 1, "major": 1,
"minor": 57, "minor": 57,
"patch": 0 "patch": 1
}, },
"enterprise": "enterprise":
{ {
"version": "1.59.0", "version": "1.59.1",
"major": 1, "major": 1,
"minor": 59, "minor": 59,
"patch": 0 "patch": 1
} }
} }