Allow searching databases by name (#7)
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

pull/18/head
Garrett Mills 4 years ago
parent 468f210d59
commit 35eb824b45
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

@ -72,6 +72,9 @@ export class SearchComponent implements OnInit {
} else if ( result.type === 'code' ) {
await this.router.navigate(['/editor', { id: result.associated.id, node_id: result.id }]);
await this.dismiss();
} else if ( result.type === 'db' ) {
await this.router.navigate(['/editor', { id: result.associated.id, node_id: result.id }]);
await this.dismiss();
}
}

Loading…
Cancel
Save