File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
components/csvbox/sources/new-row-instant Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import sampleEmit from "./test-event.mjs";
33
44export default {
55 key : "csvbox-new-row-instant" ,
6- name : "Import New Row" ,
6+ name : "New Row Imported " ,
77 description : "Emit new events when a new row is added to a CSVBox sheet" ,
88 version : "0.0.1" ,
99 type : "source" ,
@@ -126,8 +126,8 @@ export default {
126126
127127 for ( const row of body ) {
128128 this . $emit ( row , {
129- id : row . import_id || `${ row . sheet_id } _${ row . row_number } _${ Date . now ( ) } ` ,
130- summary : `New data imported to sheet ${ row . sheet_name } ` ,
129+ id : `${ row . sheet_id } _${ row . row_number } _${ Date . now ( ) } ` ,
130+ summary : `New Row Imported from sheet ${ row . sheet_name } ` ,
131131 ts : Date . now ( ) ,
132132 } ) ;
133133 }
You can’t perform that action at this time.
0 commit comments