Skip to content

Commit fa10aea

Browse files
committed
fix: add missing semicolon in proxy_pass directive
1 parent d0c3f49 commit fa10aea

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
# UTMStack 11.1.1
1+
# UTMStack 11.1.2
22

3-
These are the release notes for **UTMStack v11.1.1**, highlighting new features, bug fixes, and performance improvements.
3+
These are the release notes for **UTMStack v11.1.2**, highlighting new features, bug fixes, and performance improvements.
44

55
## Fixes
6-
- Improved the module activation and deactivation process to handle missing modules more robustly and prevent errors when activating integrations.
7-
8-
## Features
9-
- Enabled inline expand/collapse functionality for alert echo rows.
6+
- Fixed initial loading issue in Log Explorer where pattern stored fields were not properly initialized on startup.

frontend/src/app/shared/services/elasticsearch/local-field.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class LocalFieldService {
1414
}
1515

1616
getPatternStoredFields(indexPattern: string): ElasticSearchFieldInfoType[] {
17-
return this.localStorage.retrieve(indexPattern + INDEX_PATTERN_FIELD);
17+
return this.localStorage.retrieve(indexPattern + INDEX_PATTERN_FIELD) || [];
1818
}
1919

2020
setPatternStoredFields(indexPattern: string, fields: ElasticSearchFieldInfoType[]) {

installer/templates/front-end.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const FrontEnd string = `server {
2020
set $shared_key_header $http_x_shared_key;
2121
2222
location /login/saml2/ {
23-
proxy_pass $utmstack_saml2
23+
proxy_pass $utmstack_saml2;
2424
proxy_http_version 1.1;
2525
proxy_set_header Host $host;
2626
proxy_set_header X-Real-IP $remote_addr;

0 commit comments

Comments
 (0)