clarify missing name and description

This commit is contained in:
glyph 2022-03-25 09:19:43 +02:00
parent 367f0307b6
commit aefa1525fb
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ fn profile_bio_template(profile: &Profile) -> Markup {
@if let Some(name) = &profile.name {
(name)
} @else {
"Name unavailable"
i { "Name is unavailable or has not been set" }
}
}
label class="label-small label-ellipsis font-gray" style="user-select: all;" for="profileName" title="Public Key" {
@ -69,7 +69,7 @@ fn profile_bio_template(profile: &Profile) -> Markup {
@if let Some(description) = &profile.description {
(description)
} @else {
"Description unavailable"
i { "Description is unavailable or has not been set" }
}
}