quick export - current archive

This commit is contained in:
Jan Prochazka
2023-02-24 17:22:11 +01:00
parent d024b6f25c
commit a519c78301
4 changed files with 68 additions and 26 deletions

View File

@@ -251,3 +251,9 @@ export function subscribeApiDependendStores() {
}
});
}
let currentArchiveValue = null;
currentArchive.subscribe(value => {
currentArchiveValue = value;
});
export const getCurrentArchive = () => currentArchiveValue;