Skip to content

Commit

Permalink
id value fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 authored Jul 23, 2019
1 parent 0cae045 commit 6cd3670
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 6cd3670

Please sign in to comment.