diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-24 19:03:59 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-24 19:03:59 -0500 |
commit | 629ca24e905bb7653546ce8741ec6c472efea1f8 (patch) | |
tree | 26c1afa8b32378baf242a8a923ca044941b4bd3b /src/view/com/util/forms/DropdownButton.tsx | |
parent | 2ba4d9bfbf25b37473eb1d693cf5c9294e4b6d94 (diff) | |
download | voidsky-629ca24e905bb7653546ce8741ec6c472efea1f8.tar.zst |
Tune the custom feed header
Diffstat (limited to 'src/view/com/util/forms/DropdownButton.tsx')
-rw-r--r-- | src/view/com/util/forms/DropdownButton.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/view/com/util/forms/DropdownButton.tsx b/src/view/com/util/forms/DropdownButton.tsx index 36ef1f409..064b8211b 100644 --- a/src/view/com/util/forms/DropdownButton.tsx +++ b/src/view/com/util/forms/DropdownButton.tsx @@ -136,7 +136,12 @@ export function DropdownButton({ } return ( <View ref={ref2}> - <Button testID={testID} onPress={onPress} style={style} label={label}> + <Button + type={type} + testID={testID} + onPress={onPress} + style={style} + label={label}> {children} </Button> </View> |