mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Fixed visibility of internal _posts
member
The _posts member is supposed to be an iternal property to store the data used by the `posts` getter/setter
This commit is contained in:
parent
633cecdf75
commit
0cfa236570
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export class Collection {
|
|||
deletable: boolean;
|
||||
_deleted: boolean = false;
|
||||
|
||||
_posts: string[];
|
||||
private _posts: string[];
|
||||
get posts() {
|
||||
return this._posts;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue