-
Notifications
You must be signed in to change notification settings - Fork 650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Dashboard] Revisit "Your Maps" & "Your Datasets" Placeholders #14534
Comments
Merged! |
Hey! I was testing something and I find some issues related to this:
|
Kind of related with https://github.com/CartoDB/product/issues/227. |
Hey! I just discovered something related to this: This is the home page of a user that doesn't have maps and datasets: @kukukaka does it make sense to show "VIEW ALL MAPS" and "VIEW ALL DATASETS" links in this case? |
Merged! |
Ole! 👏 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your Maps
1. User has not created any map yet (
total_user_entries === 0
):We can update the copy to:
2. User has created some maps but they are all locked (
total_user_entries > 0 && total_user_entries - total_locked === 0
):3. User has not created any map yet but she/he has some maps that have been shared with her/him (
total_user_entries === 0 && total_shared > 0
):Your Datasets
1. User has not created any dataset yet (
total_user_entries === 0
):We can update the copy to:
2. User has created some datasets but they are all locked (
total_user_entries > 0 && total_user_entries - total_locked === 0
):(*) It should say datasets instead of maps.
3. User has not created any dataset yet but she/he has some datasets that have been shared with her/him (
total_user_entries === 0 && total_shared > 0
):(*) It should say datasets instead of maps.
--
@ramiroaznar Placeholders are pointing to https://carto.com/help/tutorials/builder/ and
https://carto.com/help/tutorials/import-data/. Are there any better resources where users can learn about Builder and Importing data? Thanks!
cc: @kukukaka @jesusbotella
The text was updated successfully, but these errors were encountered: