chore: 🎨 format
This commit is contained in:
parent
f0391d0769
commit
6d602fa80a
@ -782,7 +782,10 @@ async function insertNote(
|
||||
await transactionalEntityManager.insert(Note, insert);
|
||||
|
||||
let expiresAt: Date | null;
|
||||
if (!data.poll.expiresAt || Number.isNaN(data.poll.expiresAt.getTime())) {
|
||||
if (
|
||||
!data.poll.expiresAt ||
|
||||
Number.isNaN(data.poll.expiresAt.getTime())
|
||||
) {
|
||||
expiresAt = null;
|
||||
} else {
|
||||
expiresAt = data.poll.expiresAt;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="yfudmmck">
|
||||
<nav :style="fullPageHeader ? '' : {'position': 'fixed'}">
|
||||
<nav :style="fullPageHeader ? '' : { position: 'fixed' }">
|
||||
<div class="path" @contextmenu.prevent.stop="() => {}">
|
||||
<XNavFolder
|
||||
:class="{ current: folder == null }"
|
||||
|
Loading…
Reference in New Issue
Block a user