You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/components/home/components/home-events/home-events-card/home-events-card.component.scss
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/events/components/event-embedded-video-stream/event-embedded-video-stream.component.html
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/events/components/event-form-responses/event-form-responses.component.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ <h3>{{ event.name }}</h3>
107
107
type="text"
108
108
fullWidth
109
109
fieldSize="tiny"
110
-
placeholder="{{ isLoading ? 'Still Loading' : 'Filter by Name' }}"
110
+
placeholder="{{ isLoading ? 'Still Loading' : 'Search by name or email' }}"
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/external-feed/components/external-feed/external-feed.component.html
+6-23
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,7 @@
4
4
<nb-cardclass="tag-checkboxes">
5
5
<divclass="header">Popular Tags</div>
6
6
<divclass="tag-checkbox" *ngFor="let tag of tags">
7
-
<input
8
-
type="checkbox"
9
-
name="tags"
10
-
value="{{ tag }}"
11
-
id="#{{ tag }}"
12
-
[checked]="false"
13
-
(change)="updateCheckedTags(tag, $event)"
14
-
/>
7
+
<inputtype="checkbox" name="tags" value="{{ tag }}" id="#{{ tag }}" [checked]="false" (change)="updateCheckedTags(tag, $event)" />
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/external-feed/components/external-feed/external-feed.component.scss
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/external-feed/components/external-feed/external-feed.component.ts
+11
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ export class ExternalFeedComponent implements OnInit {
18
18
tagsMap:any={};
19
19
tagsChecked=[];
20
20
sortingCriterion="published_at";
21
+
toggleLatestButton=false;
22
+
togglePopularButton=false;
21
23
22
24
constructor(
23
25
privatefeedItemService: FeedItemService,
@@ -48,6 +50,7 @@ export class ExternalFeedComponent implements OnInit {
48
50
}
49
51
});
50
52
}
53
+
51
54
updateCheckedTags(tag,event){
52
55
this.page=1
53
56
this.tagsMap[tag]=event.target.checked;
@@ -102,6 +105,10 @@ export class ExternalFeedComponent implements OnInit {
102
105
}
103
106
104
107
getLatestPosts(){
108
+
this.toggleLatestButton=true;
109
+
if(this.togglePopularButton){
110
+
this.togglePopularButton=false;
111
+
}
105
112
this.sortingCriterion="published_at";
106
113
this.page=1;
107
114
this.externalPosts=[];
@@ -110,6 +117,10 @@ export class ExternalFeedComponent implements OnInit {
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/external-feed/components/feed-item-details/feed-item-details.component.html
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/external-feed/components/feed-item-details/feed-item-details.component.scss
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/external-feed/components/feed-item-details/feed-item-details.component.ts
+7-20
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,9 @@ import { IFeedItem } from "projects/shared-models/feed-item.model";
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/users/components/public-profile/public-profile.component.scss
Copy file name to clipboardexpand all lines: projects/commudle-admin/src/app/feature-modules/users/components/public-profile/user-content/user-contributions/user-contributions.component.scss
0 commit comments