Merge branch 'main' into gh-1059-fix-empty-placeholder-in-card-dialog
This commit is contained in:
commit
bd13e8f1e5
2 changed files with 6 additions and 2 deletions
|
@ -93,7 +93,6 @@
|
|||
font-size: 14px;
|
||||
position: relative;
|
||||
text-overflow: ellipsis;
|
||||
align-items: center;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba(var(--center-channel-color-rgb), 0.05);
|
||||
|
@ -197,6 +196,10 @@
|
|||
|
||||
.table-row-container {
|
||||
width: fit-content;
|
||||
|
||||
.octo-table-cell {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
.octo-table-footer {
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// See LICENSE.txt for license information.
|
||||
import {Utils} from './utils'
|
||||
import {Block} from './blocks/block'
|
||||
import {OctoUtils} from './octoUtils'
|
||||
|
||||
// These are outgoing commands to the server
|
||||
type WSCommand = {
|
||||
|
@ -232,7 +233,7 @@ class WSClient {
|
|||
|
||||
private queueUpdateNotification(block: Block) {
|
||||
this.updatedBlocks = this.updatedBlocks.filter((o) => o.id !== block.id) // Remove existing queued update
|
||||
this.updatedBlocks.push(block)
|
||||
this.updatedBlocks.push(OctoUtils.hydrateBlock(block))
|
||||
if (this.updateTimeout) {
|
||||
clearTimeout(this.updateTimeout)
|
||||
this.updateTimeout = undefined
|
||||
|
|
Loading…
Reference in a new issue