File tree Expand file tree Collapse file tree
routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table] Expand file tree Collapse file tree Original file line number Diff line number Diff line change 131131
132132 switch (status ) {
133133 case ' completed' :
134- downloadExportedFile (downloadUrl );
134+ if (downloadUrl ) {
135+ downloadExportedFile (downloadUrl );
136+ }
135137 break ;
136138 case ' failed' :
137139 await showCompletionNotification (
Original file line number Diff line number Diff line change 146146 table: page .params .table
147147 }
148148 );
149- return queryParam ? ` ${url }?query=${queryParam } ` : url ;
149+ return queryParam ? ` ${url }?query=${encodeURIComponent ( queryParam ) } ` : url ;
150150 }
151151
152152 onDestroy (() => ($showCreateColumnSheet .show = false ));
224224 size =" s"
225225 secondary
226226 class =" small-button-dimensions"
227- disabled ={! (hasColumns && hasValidColumns && data .rows .total ) || disableButton }
227+ disabled ={! (hasColumns && hasValidColumns && data .rows .total ) ||
228+ disableButton }
228229 on:click ={() => {
229230 trackEvent (Click .DatabaseExportCsv );
230231 goto (getTableExportUrl ());
430431
431432 :global(.rotating ) {
432433 animation : rotate 1s linear infinite ;
434+ animation-direction : reverse ;
433435 }
434436
435437 @keyframes rotate {
You can’t perform that action at this time.
0 commit comments