UI: Minor fixes
This commit is contained in:
parent
9b474dee1e
commit
b9b11e3b9a
@ -259,7 +259,7 @@ export class ImageGalleryComponent extends PageComponent implements OnInit, OnDe
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.gridImagesFilter = {
|
this.gridImagesFilter = {
|
||||||
search: isNotEmptyStr(value) ? encodeURI(value) : null,
|
search: isNotEmptyStr(value) ? value.trim() : null,
|
||||||
includeSystemImages: this.includeSystemImages
|
includeSystemImages: this.includeSystemImages
|
||||||
};
|
};
|
||||||
this.cd.markForCheck();
|
this.cd.markForCheck();
|
||||||
|
|||||||
@ -111,8 +111,7 @@ export class ImportExportService {
|
|||||||
this.imageService.exportImage(type, key).subscribe(
|
this.imageService.exportImage(type, key).subscribe(
|
||||||
{
|
{
|
||||||
next: (imageData) => {
|
next: (imageData) => {
|
||||||
let name = imageData.title;
|
const name = imageData.fileName.split('.')[0];
|
||||||
name = name.toLowerCase().replace(/\W/g, '_');
|
|
||||||
this.exportToPc(imageData, name);
|
this.exportToPc(imageData, name);
|
||||||
},
|
},
|
||||||
error: (e) => {
|
error: (e) => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user