Fix unencoded StatusBar on Desktop
This commit is contained in:
parent
a33087440c
commit
19c5132ac5
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class StatusBar extends React.PureComponent<Props, State> {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { hoverUrl, show } = this.state;
|
const { hoverUrl, show } = this.state;
|
||||||
return <div className={classnames('status-bar', { visible: show })}>{hoverUrl}</div>;
|
return <div className={classnames('status-bar', { visible: show })}>{decodeURI(hoverUrl)}</div>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue