99e6f8ddda
refs https://github.com/TryGhost/Team/issues/1976 refs https://ghost.slack.com/archives/C02G9E68C/p1664446234131629 - @tracked properties in controllers are persisted, should use components instead
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default class AnalyticsController extends Controller {
|
|
get post() {
|
|
return this.model;
|
|
}
|
|
}
|