Update Docs

This commit is contained in:
docjyJ 2020-09-08 17:03:15 +02:00
parent 5a92b5096a
commit ce1227901c
2 changed files with 8 additions and 10 deletions

View file

@ -440,15 +440,13 @@ class ProxiwashScreen extends React.Component<PropsType, StateType> {
const getItemIcon = (props: ListIconPropsType): React.Node => const getItemIcon = (props: ListIconPropsType): React.Node =>
ProxiwashScreen.getItemIcon(item, props); ProxiwashScreen.getItemIcon(item, props);
return ( return (
<Card> <List.Item
<List.Item title={item.title}
title={item.title} description={item.subtitle}
description={item.subtitle} left={getItemIcon}
left={getItemIcon} right={ProxiwashScreen.getChevronIcon}
right={ProxiwashScreen.getChevronIcon} onPress={this.onPressCallback}
onPress={this.onPressCallback} />
/>
</Card>
); );
}; };

View file

@ -71,7 +71,7 @@ class ProxiwashSettingsScreen extends React.Component<null, StateType> {
} }
/** /**
* Saves the value for the proxiwash reminder notification time * Saves the value for the proxiwash selected wash
* *
* @param value The value to store * @param value The value to store
*/ */