add missing save to invites & url shortener settings, update external urls settings

This commit is contained in:
Stef-00012 2025-02-21 13:54:27 +01:00
parent d00c0630a6
commit b376aa3721
No known key found for this signature in database
GPG key ID: 28BE9A9E4EF0E6BF
9 changed files with 518 additions and 27 deletions

View file

@ -38,6 +38,7 @@ export interface SelectProps {
left?: DimensionValue;
right?: DimensionValue;
};
title?: string
}
export default function Select({
@ -51,6 +52,7 @@ export default function Select({
maxHeight = 200,
multiple = false,
width,
title,
margin = {},
renderSelectedItem = (item, key) => (
<Text
@ -122,6 +124,16 @@ export default function Select({
marginBottom: margin.bottom,
}}
>
{title && (
<Text
style={{
...styles.inputHeader,
...(disabled && styles.inputHeaderDisabled),
}}
>
{title}
</Text>
)}
<TouchableOpacity
style={styles.selectButton}
onPress={() => {