diff options
| author | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-08 23:21:07 -0600 |
|---|---|---|
| committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-08 23:21:07 -0600 |
| commit | 20ccd93a176f911a43b3db3d595f3fdb3491934f (patch) | |
| tree | 020a8566f8bb3c7864fc69ba1120697174a17a77 /src/components/about | |
| parent | 5db77c839bcf2ec433c8618c5b2ef1ff850df613 (diff) | |
about: add staff panel
Diffstat (limited to 'src/components/about')
| -rw-r--r-- | src/components/about/about.js | 4 | ||||
| -rw-r--r-- | src/components/about/about.vue | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/components/about/about.js b/src/components/about/about.js index 92856b21..5c95c079 100644 --- a/src/components/about/about.js +++ b/src/components/about/about.js @@ -1,12 +1,14 @@ import InstanceSpecificPanel from '../instance_specific_panel/instance_specific_panel.vue' import FeaturesPanel from '../features_panel/features_panel.vue' import TermsOfServicePanel from '../terms_of_service_panel/terms_of_service_panel.vue' +import StaffPanel from '../staff_panel/staff_panel.vue' const About = { components: { InstanceSpecificPanel, FeaturesPanel, - TermsOfServicePanel + TermsOfServicePanel, + StaffPanel }, computed: { showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel }, diff --git a/src/components/about/about.vue b/src/components/about/about.vue index 10dad4bb..ad520d11 100644 --- a/src/components/about/about.vue +++ b/src/components/about/about.vue @@ -1,6 +1,7 @@ <template> <div class="sidebar"> <instance-specific-panel v-if="showInstanceSpecificPanel" /> + <staff-panel /> <terms-of-service-panel /> <features-panel v-if="showFeaturesPanel" /> </div> |
