diff --git a/src/app/pages/community-info/profile/edit-community/edit-community.component.ts b/src/app/pages/community-info/profile/edit-community/edit-community.component.ts index 8e701ff..17ec521 100644 --- a/src/app/pages/community-info/profile/edit-community/edit-community.component.ts +++ b/src/app/pages/community-info/profile/edit-community/edit-community.component.ts @@ -16,45 +16,37 @@ declare var UIkit; @Component({ selector: 'edit-community', template: ` -
-
-
-
-
- - - -
-
Description
-
The description of the community
- +
+
+
+
+
+
+
+
+
Description of the community
+ - -
- + +
+
-
-
-
-
-
-
-
- -
-
- -
-
- -
+
+
+
+
+ +
+
+ +
+
+
-
{{uploadError}}
-
+ +
{{uploadError}}
- -
`, +
+
+
+
+ + `, styleUrls: ['edit-community.component.css'] }) export class EditCommunityComponent { - @Input() - public maxHeight = 'none'; - @Input() - public paddingLarge: boolean = false; public communityFb: FormGroup; public statuses: Option[] = [ {label: 'Visible', value: 'all'}, diff --git a/src/app/pages/community-info/profile/profile.component.ts b/src/app/pages/community-info/profile/profile.component.ts index db371c5..fcf599f 100644 --- a/src/app/pages/community-info/profile/profile.component.ts +++ b/src/app/pages/community-info/profile/profile.component.ts @@ -10,40 +10,37 @@ import {Subscription} from "rxjs"; @Component({ selector: 'community-profile', template: ` -
+
+
+
+
Admin Dashboard - Manage Community Profile
+

{{community.shortTitle}}

+
+
-
-
-
-
- Manage Community Profile -
-
- {{community.shortTitle}} - (unsaved changes) -
-
-
- -
-
-
-
- -
-
- +
+
+ +
+
+ +
@@ -57,7 +54,9 @@ export class ProfileComponent implements OnInit, OnDestroy { public loading: boolean = false; private subscriptions: any[] = []; @ViewChild('editCommunityComponent', { static: true }) editCommunityComponent: EditCommunityComponent; - + + public stickyPageHeader: boolean = false; + constructor(private communityService: CommunityService, private title: Title) { }