fix
This commit is contained in:
@@ -2341,8 +2341,7 @@ const AppLayout = () => {
|
|||||||
if (totalCount > 1) {
|
if (totalCount > 1) {
|
||||||
const badge = document.createElement('div');
|
const badge = document.createElement('div');
|
||||||
badge.className = 'document-drag-preview__count';
|
badge.className = 'document-drag-preview__count';
|
||||||
badge.textContent =
|
badge.textContent = `${totalCount}`;
|
||||||
totalCount > maxVisible ? `+${totalCount - maxVisible}` : `${totalCount}`;
|
|
||||||
wrapper.appendChild(badge);
|
wrapper.appendChild(badge);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,6 @@ const DocumentsList = ({
|
|||||||
<tr>
|
<tr>
|
||||||
<th className="thumb-column"></th>
|
<th className="thumb-column"></th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Tags</th>
|
|
||||||
<th>Issued</th>
|
<th>Issued</th>
|
||||||
<th>Actions</th>
|
<th>Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -103,7 +102,7 @@ const DocumentsList = ({
|
|||||||
<span>{folder.name}</span>
|
<span>{folder.name}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>—</td>
|
<td></td>
|
||||||
<td className="actions">
|
<td className="actions">
|
||||||
<div className="action-buttons">
|
<div className="action-buttons">
|
||||||
{folder.id !== 'root' && onFolderRename && (
|
{folder.id !== 'root' && onFolderRename && (
|
||||||
|
|||||||
Reference in New Issue
Block a user