mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
356a1ead2a
refs: https://github.com/TryGhost/Team/issues/1462 - added in dynamic dark mode grid lines for the charts - added in some subtle other dark mode tweaks for borders - limited the recent posts to 3 instead of 5
16 lines
446 B
JavaScript
16 lines
446 B
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class RecentPosts extends Component {
|
|
@service store;
|
|
|
|
@tracked posts = [];
|
|
|
|
@action
|
|
async loadPosts() {
|
|
this.posts = await this.store.query('post', {limit: 3, filter: 'status:published', order: 'published_at desc'});
|
|
}
|
|
}
|