-
Notifications
You must be signed in to change notification settings - Fork 5
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
refactor(DashboardCreationController): update placeholder
#1109
base: staging
Are you sure you want to change the base?
refactor(DashboardCreationController): update placeholder
#1109
Conversation
Deploying beaconchain with Cloudflare Pages
|
d967a64
to
7bc10fc
Compare
placeholder
placeholder
48e3e50
to
1912cb3
Compare
np: |
…oard creation` When `user` starts the dashboard creation flow the user will have display the `input`field and start `user journey`. See: BEDS-570
…prove `ux` for `dashboard creation`
1912cb3
to
f642e06
Compare
@@ -78,7 +78,7 @@ function show( | |||
} | |||
network.value = forcedNetwork || currentNetwork.value | |||
state.value = 'type' | |||
name.value = isLoggedIn.value ? '' : 'cookie' | |||
name.value = isLoggedIn.value ? '' : '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not entirely sure on my own what this line
does...which means that the whole feature
needs refactoring...but plz never do things like this, because this line no is max-confusing
name.value = isLoggedIn.value ? '' : '' |
(would exactly be the same)
@@ -117,7 +117,7 @@ | |||
"title": "Add a new dashboard", | |||
"type": { | |||
"accounts": "Accounts", | |||
"placeholder": "Name", | |||
"placeholder": "Enter dashboard name", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice that you improve things along the way 💪.
But we are using placeholder
as input labels
.
See: https://www.deque.com/blog/accessible-forms-the-problem-with-placeholders/
Placeholder value should be an example
of the things a user should input
.
Maybe you come up with a different idea.
np: commit refactor(DashboardCreationController): remove In the See: BEDS-570 feat(DashboardCreationController): update placeholder for |
See: BEDS-570