Compare commits

..

4 Commits

Author SHA1 Message Date
Yuri Kuznetsov 0ae0365ee5 9.0.6 2025-03-19 11:08:06 +02:00
Yuri Kuznetsov cbcc560bd3 sanitize navbar color 2025-03-19 09:33:35 +02:00
Yuri Kuznetsov 398743fe63 remove icon class 2025-03-14 12:43:08 +02:00
Yuri Kuznetsov 92f6759591 fix task reminders handler 2025-03-14 12:42:08 +02:00
5 changed files with 15 additions and 5 deletions
@@ -53,7 +53,11 @@ class RemindersHandler {
this.listenTo(this.model, 'change', () => {
if (
!this.model.hasChanged('assignedUserId') &&
!this.model.hasChanged('assignedUsersIds')
!this.model.hasChanged('assignedUsersIds') &&
!this.model.hasChanged('assignedUsersIds') &&
!this.model.hasChanged('dateEnd') &&
!this.model.hasChanged('dateEndDate') &&
!this.model.hasChanged('status')
) {
return;
}
@@ -1421,7 +1421,6 @@ export default class extends ModalView {
"fas fa-water",
"fas fa-water-ladder",
"fas fa-wave-square",
"fas fa-web-awesome",
"fas fa-weight-hanging",
"fas fa-weight-scale",
"fas fa-wheat-awn",
+7
View File
@@ -1286,6 +1286,13 @@ class NavbarSiteView extends View {
color = this.getMetadata().get(['clientDefs', tab, 'color']);
}
if (
color &&
!/^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/.test(color)
) {
color = null;
}
if (!params.tabIconsDisabled && !isGroup && !isDivider && !isUrl) {
iconClass = this.getMetadata().get(['clientDefs', tab, 'iconClass'])
}
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "espocrm",
"version": "9.0.5",
"version": "9.0.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "espocrm",
"version": "9.0.5",
"version": "9.0.6",
"hasInstallScript": true,
"license": "AGPL-3.0-or-later",
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "espocrm",
"version": "9.0.5",
"version": "9.0.6",
"description": "Open-source CRM.",
"repository": {
"type": "git",