This repository was archived by the owner on Jul 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ export const MetadataDatabaseColumns = Object.freeze({
105105 label : MetadataLabels . TASK ,
106106 accessor : MetadataColumns . TASKS ,
107107 isMetadata : true ,
108- skipPersist : false ,
109- csvCandidate : true ,
108+ skipPersist : true ,
109+ csvCandidate : false ,
110110 config : DEFAULT_COLUMN_CONFIG
111111 } ,
112112} ) ;
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ export class PreviewDatabaseModeService {
9191
9292 internalEmbedDiv . empty ( ) ;
9393 const previewTimeoutContainer = await this . renderPreview ( internalEmbedDiv , ctx ) ;
94- console . log ( "internalEmbedDiv" ) ;
9594 //timer to avoid the image flickering when the user is typing
9695 let timer : NodeJS . Timeout = null ;
9796 const observer = new MutationObserver ( ( m ) => {
@@ -140,7 +139,9 @@ export class PreviewDatabaseModeService {
140139 columns ,
141140 databaseDisk . yaml . filters
142141 ) ;
143- const dataviewCols : string [ ] = columns . map ( ( c ) => c . key ) ;
142+ const dataviewCols : string [ ] = columns
143+ . filter ( ( col ) => ! col . skipPersist )
144+ . map ( ( c ) => c . key ) ;
144145 const dataviewMatrixRow : any [ ] [ ] = rows . map ( ( r ) =>
145146 dataviewCols . map ( ( c ) => r [ c ] )
146147 ) ;
You can’t perform that action at this time.
0 commit comments