mirror of
https://github.com/ozntel/oz-calendar.git
synced 2026-07-22 07:40:24 +00:00
Filename Overflow Scroll Fix
This commit is contained in:
parent
3f45fa1d7d
commit
3de6bbd0be
1 changed files with 6 additions and 4 deletions
|
|
@ -111,7 +111,11 @@ export default function NoteListComponent(params: NoteListComponentParams) {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="oz-calendar-notelist-container">
|
||||
<div
|
||||
className={
|
||||
'oz-calendar-notelist-container ' +
|
||||
(plugin.settings.fileNameOverflowBehaviour == 'scroll' ? 'oz-calendar-overflow-scroll' : '')
|
||||
}>
|
||||
{selectedDayNotes.length === 0 && (
|
||||
<div className="oz-calendar-note-no-note">
|
||||
<RiPhoneFindLine className="oz-calendar-no-note-icon" />
|
||||
|
|
@ -123,9 +127,7 @@ export default function NoteListComponent(params: NoteListComponentParams) {
|
|||
<div
|
||||
className={
|
||||
'oz-calendar-note-line' +
|
||||
(plugin.settings.fileNameOverflowBehaviour == 'scroll'
|
||||
? ' oz-calendar-overflow-scroll'
|
||||
: plugin.settings.fileNameOverflowBehaviour == 'hide'
|
||||
(plugin.settings.fileNameOverflowBehaviour == 'hide'
|
||||
? ' oz-calendar-overflow-hide'
|
||||
: '')
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue