mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
Merge branch 'master' of https://github.com/Zagrios/bs-manager
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: "[BUG]"
|
||||
title: "Bug: "
|
||||
labels: bug
|
||||
assignees: Zagrios
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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>();
|
||||
|
||||
Reference in New Issue
Block a user