1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-20 14:54:15 +01:00

(bug) unable to show Fabmanager network project picture

This commit is contained in:
Du Peng 2024-04-19 17:08:28 +02:00
parent 12c9689c55
commit f83c976fd9
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Next release
- Fix a bug: unable to show Fabmanager network project picture
## v6.3.20 2024 Avril 15
- improvement: hide gender in member create/edit form if not required

View File

@ -370,7 +370,7 @@ Application.Filters.filter('currency', [function ($locale) {
Application.Filters.filter('encodeURI', [function () {
return function (str) {
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
return str.replace(/[!'()*]/g, function (c) {
return '%' + c.charCodeAt(0).toString(16);
});
};