Can I make it so that only the person featured in the database row can view the image picker and nobody else will be able to change or upload their image… this would be for a tab on the app displaying team members images, their info, and a click to contact.
Set a visibility condition on the component to display it only if the email in the row matches the email in the user profile.
1 Like
If you want an option that works without involving a user table, you can create a user specific boolean column that is only available to you and set the visibility of the image picker based on that being checked.
To achieve this throughout the app, I use a single row table that I can link to all screens and fetch this value (single value column) in all of my other tables.