Removed the unnecessary component code for the Community module in new Dashboard

refs: https://github.com/TryGhost/Team/issues/1531
This commit is contained in:
James Morris 2022-05-11 15:31:38 +01:00
parent f6259f1f63
commit 7e7c1e4bf5
2 changed files with 1 additions and 13 deletions

View File

@ -1,4 +1,4 @@
<section class="gh-dashboard5-resource gh-dashboard5-community" {{did-insert this.load}}>
<section class="gh-dashboard5-resource gh-dashboard5-community">
<a href="https://ghost.org/resources/community/" target="_blank" rel="noopener noreferrer" class="gh-dashboard5-resource-box">
<div class="gh-dashboard5-resource-title">
<h4>Ghost Creator Community</h4>

View File

@ -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;
}
}