Skip to content

Commit 8d6dc7c

Browse files
authored
Merge pull request topcoderinc#433 from topcoderinc/issue-275
fixes issue 275
2 parents d574a19 + 87e32ff commit 8d6dc7c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/app/components/import-data-dialog/import-data-dialog.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ export class ImportDataDialogComponent implements OnInit {
8080
this.redisService.export(this.instanceId, this.exportType).subscribe(rsp => {
8181
const data = new Blob([rsp], { type: 'text/plain;charset=utf-8' });
8282
saveAs(data, `db-${Date.now()}.${this.exportType}`);
83-
this.util.showMessage('Exported successfully.');
8483
}, err => {
8584
this.util.showMessage('Fail to export redis commands: ' + this.util.getErrorMessage(err));
8685
});

0 commit comments

Comments
 (0)