mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 02:28:57 +01:00
style/delete note dialog: tweak layout
This commit is contained in:
parent
e457e6a2f2
commit
b9101c9fb2
@ -113,10 +113,10 @@ function DeletedNotes({ noteIdsToBeDeleted }: { noteIdsToBeDeleted: DeleteNotesP
|
|||||||
|
|
||||||
if (noteIdsToBeDeleted.length) {
|
if (noteIdsToBeDeleted.length) {
|
||||||
return (
|
return (
|
||||||
<div className="delete-notes-list-wrapper">
|
<div className="delete-notes-list-wrapper" style={{paddingTop: "16px"}}>
|
||||||
<h4>{t("delete_notes.notes_to_be_deleted", { notesCount: noteIdsToBeDeleted.length })}</h4>
|
<h4>{t("delete_notes.notes_to_be_deleted", { notesCount: noteIdsToBeDeleted.length })}</h4>
|
||||||
|
|
||||||
<ul className="delete-notes-list" style={{ maxHeight: "200px", overflow: "auto" }}>
|
<ul className="delete-notes-list" style={{ maxHeight: "200px", overflow: "auto"}}>
|
||||||
{noteLinks.map((link, index) => (
|
{noteLinks.map((link, index) => (
|
||||||
<li key={index} dangerouslySetInnerHTML={{ __html: link }} />
|
<li key={index} dangerouslySetInnerHTML={{ __html: link }} />
|
||||||
))}
|
))}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user