Skip to content

Commit

Permalink
Merge pull request #349 from VirtualFlyBrain/development
Browse files Browse the repository at this point in the history
 id value fix
  • Loading branch information
Robbie1977 authored Jul 23, 2019
2 parents c7ab202 + 6cd3670 commit f3413d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/interface/VFBTermInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ export default class VFBTermInfoWidget extends React.Component {
});
items = items.replace(',,', ',').replace('i=,', 'i=');
try {
items = 'id=' + this.refs.termInfoRef.data.split('.')[0] + '&' + items;
items = 'id=' + this.refs.termInfoRef.state.termInfoId.replace('_meta','') + '&' + items;
} catch (ignore) { }
if (items != "i=") {
parent.history.pushState({}, title, parent.location.pathname + "?" + items);
Expand Down

0 comments on commit f3413d0

Please sign in to comment.