From 7e7c1e4bf536802911bb98d2a5ccf6feea26d1eb Mon Sep 17 00:00:00 2001 From: James Morris Date: Wed, 11 May 2022 15:31:38 +0100 Subject: [PATCH] Removed the unnecessary component code for the Community module in new Dashboard refs: https://github.com/TryGhost/Team/issues/1531 --- .../components/dashboard/v5/resources/community.hbs | 2 +- .../components/dashboard/v5/resources/community.js | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 ghost/admin/app/components/dashboard/v5/resources/community.js diff --git a/ghost/admin/app/components/dashboard/v5/resources/community.hbs b/ghost/admin/app/components/dashboard/v5/resources/community.hbs index 4a5d7154a8..450bb50ba3 100644 --- a/ghost/admin/app/components/dashboard/v5/resources/community.hbs +++ b/ghost/admin/app/components/dashboard/v5/resources/community.hbs @@ -1,4 +1,4 @@ -
+

Ghost Creator Community

diff --git a/ghost/admin/app/components/dashboard/v5/resources/community.js b/ghost/admin/app/components/dashboard/v5/resources/community.js deleted file mode 100644 index 7a1ffcc181..0000000000 --- a/ghost/admin/app/components/dashboard/v5/resources/community.js +++ /dev/null @@ -1,12 +0,0 @@ -import Component from '@glimmer/component'; -import {action} from '@ember/object'; -import {tracked} from '@glimmer/tracking'; - -export default class Community extends Component { - @tracked loading = null; - - @action - load() { - this.loading = true; - } -}