This commit is contained in:
Martti Malmi 2021-08-09 15:23:59 +03:00
parent be97582271
commit 8298067fce
3 changed files with 3 additions and 3 deletions

View File

@ -1044,7 +1044,7 @@ ru: {
no_contacts_in_list: '더 이상 친구 리스트가 없음.',
},
"ur": {
ur: {
language_name: "اردو",
whats_your_name: "آپکا کیا نام ہے؟",
new_user_go: "چلو",

View File

@ -126,7 +126,7 @@ class SearchBox extends Component {
}
return html`
<a href="/profile/${i.key}" onClick=${e => this.onClick(e, i)}>
<${Identicon} key=${i.key + 'ic'} str=${i.key} width=40/>
<${Identicon} key=${`${i.key }ic`} str=${i.key} width=40/>
<div>
${i.name || ''}<br/>
<small>

View File

@ -214,7 +214,7 @@ class Store extends View {
State.public.user(user).get('store').get('products').map().on(this.sub(
(...args) => {
return this.onProduct(...args, user);
}, user + 'products'
}, `${user }products`
));
}