We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00bc541 commit 85a741bCopy full SHA for 85a741b
src/app.jsx
@@ -1577,7 +1577,9 @@ class App extends Component {
1577
<Button
1578
label={
1579
node.name +
1580
- (canEdit ? ' (' + node.date.format('D.M.YYYY') + ')' : '')
+ (canEdit && node.date
1581
+ ? ' (' + node.date.format('D.M.YYYY') + ')'
1582
+ : '')
1583
}
1584
className='p-button-text p-button-secondary fails-tree'
1585
tooltip={node.filename}
@@ -2177,7 +2179,7 @@ class App extends Component {
2177
2179
name: el.name,
2178
2180
filename: el.filename,
2181
type: 'notebook',
- date: moment(el.date),
2182
+ date: el.date && moment(el.date),
2183
children:
2184
el.applets?.map?.((applet) => ({
2185
id: applet.appid,
0 commit comments