This commit is contained in:
MathieuG-P
2022-11-17 23:42:52 +01:00
5 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
title: "Bug: "
labels: bug
assignees: Zagrios
+2 -2
View File
@@ -1,8 +1,8 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[AME]"
labels: enhancement
title: "Feature: "
labels: feature
assignees: Zagrios
---
Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

@@ -9,7 +9,6 @@ export class ConfigurationService {
private constructor(){
this.observers = new Map<string, BehaviorSubject<any>>();
}
private emitChange(key: string){
if(this.observers.has(key)){
const val = this.get(key);
+1
View File
@@ -22,6 +22,7 @@ export class I18nService {
if(!I18nService.instance){ I18nService.instance = new I18nService(); }
return I18nService.instance;
}
private constructor(){
this.configService = ConfigurationService.getInstance();
this.cache = new Map<string, string>();