Skip to content

Commit

Permalink
Fix RecordStore bug
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Nov 26, 2014
1 parent fb3eab4 commit 8015243
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cycledash/static/js/examine/RecordStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ function createRecordStore(vcfId, dispatcher, opt_dataSource) {
$.when(deferredSpec(vcfId), deferredContigs(vcfId))
.done((columnsResponse, contigsResponse) => {
hasLoaded = true;
columns = columnsResponse[0].spec;
contigs = contigsResponse[0].contigs;
columns = columnsResponse.spec;
contigs = contigsResponse.contigs;

var existingQuery = getQueryStringValue('query');
if (existingQuery) {
Expand Down

0 comments on commit 8015243

Please sign in to comment.