forked from cory/tildefriends
ssb: Dispatch blob wants immediately when added as the result of a web request.
This commit is contained in:
@ -132,9 +132,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
<footer class="w3-center w3-xlarge w3-padding">
|
||||
<button class="w3-button w3-yellow proceed"
|
||||
>Okay</button
|
||||
>
|
||||
<button class="w3-button w3-yellow proceed">Okay</button>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -421,13 +421,10 @@ class TfElement extends LitElement {
|
||||
[JSON.stringify(Object.keys(users))]
|
||||
);
|
||||
for (let row of info) {
|
||||
users[row.author] = Object.assign(
|
||||
users[row.author],
|
||||
{
|
||||
seq: row.max_sequence,
|
||||
ts: row.max_ts,
|
||||
}
|
||||
);
|
||||
users[row.author] = Object.assign(users[row.author], {
|
||||
seq: row.max_sequence,
|
||||
ts: row.max_ts,
|
||||
});
|
||||
}
|
||||
return users;
|
||||
}
|
||||
|
Reference in New Issue
Block a user