forked from MapComplete/MapComplete
Refactoring: fix rendering of new roads, generated by a split
This commit is contained in:
parent
840990c08b
commit
8eb2c68f79
34 changed files with 443 additions and 333 deletions
|
@ -38,8 +38,9 @@ export class IdbLocalStorage {
|
|||
return src
|
||||
}
|
||||
|
||||
public static SetDirectly(key: string, value): Promise<void> {
|
||||
return idb.set(key, value)
|
||||
public static SetDirectly(key: string, value: any): Promise<void> {
|
||||
const copy = Utils.Clone(value)
|
||||
return idb.set(key, copy)
|
||||
}
|
||||
|
||||
static GetDirectly(key: string): Promise<void> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue