mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
"resizeReviewed"
This commit is contained in:
+1
-1
@@ -24,7 +24,7 @@
|
||||
|
||||
<div class="post-item overflow-y-auto">
|
||||
<div *ngIf="publication.FileBase64.length > 30" class="post-img">
|
||||
<img src="{{publication.FileBase64}}" alt="image" tappable (click)="openPreview(publication.FileBase64)">
|
||||
<img src="{{publication.FileBase64}}" alt="image" >
|
||||
</div>
|
||||
<div *ngIf="publication.FileBase64.length < 30" class="post-img">
|
||||
<img src="/assets/icon/icon-no-image.svg" alt="image">
|
||||
|
||||
@@ -99,7 +99,7 @@ export class PublicationsService {
|
||||
}
|
||||
|
||||
// this one too,goes to observable as a first api call
|
||||
GetIdsPublicationsImages(id:any){
|
||||
GetIdsPublicationsImages(id:any) {
|
||||
const geturl = environment.apiURL + 'presidentialActions/'+ id +'/posts/ids';
|
||||
let params = new HttpParams();
|
||||
|
||||
@@ -111,6 +111,7 @@ export class PublicationsService {
|
||||
};
|
||||
return this.http.get<number[]>(`${geturl}`, options)
|
||||
}
|
||||
|
||||
|
||||
GetPublicationById( publicationId:any){
|
||||
const geturl = environment.apiURL + 'presidentialActions/posts/'+ publicationId;
|
||||
|
||||
Reference in New Issue
Block a user