add comments
This commit is contained in:
parent
43900dd72f
commit
33d690040e
2 changed files with 6 additions and 1 deletions
src/ui
|
@ -117,6 +117,10 @@ const triggerSharedStateActions = [
|
||||||
* source: the reducer name
|
* source: the reducer name
|
||||||
* property: the property in the reducer-specific state
|
* property: the property in the reducer-specific state
|
||||||
* transform: optional method to modify the value to be stored
|
* transform: optional method to modify the value to be stored
|
||||||
|
*
|
||||||
|
* See https://github.com/lbryio/lbry-redux/blob/master/src/redux/middleware/shared-state.js for the source
|
||||||
|
* This is based off v0.1
|
||||||
|
* If lbry-redux changes to another version, this code will need to be changed when upgrading
|
||||||
*/
|
*/
|
||||||
const sharedStateFilters = {
|
const sharedStateFilters = {
|
||||||
tags: { source: 'tags', property: 'followedTags' },
|
tags: { source: 'tags', property: 'followedTags' },
|
||||||
|
|
|
@ -19,7 +19,8 @@ export const getSavedPassword = () => {
|
||||||
// @endif
|
// @endif
|
||||||
|
|
||||||
// @if TARGET='web'
|
// @if TARGET='web'
|
||||||
resolve();
|
// Will handle saved passwords on web differently
|
||||||
|
resolve('');
|
||||||
// @endif
|
// @endif
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue