merging
Этот коммит содержится в:
@@ -251,6 +251,17 @@ export default class SecurityTab extends React.Component {
|
||||
<div className='divider-dark first'/>
|
||||
{passwordSection}
|
||||
<div className='divider-dark'/>
|
||||
<ul
|
||||
className='section-min'
|
||||
>
|
||||
<li className='col-sm-10 section-title'>{'Version ' + global.window.config.Version}</li>
|
||||
<li className='col-sm-7 section-describe'>
|
||||
<div className='text-nowrap'>{'Build Number: ' + global.window.config.BuildNumber}</div>
|
||||
<div className='text-nowrap'>{'Build Date: ' + global.window.config.BuildDate}</div>
|
||||
<div className='text-nowrap'>{'Build Hash: ' + global.window.config.BuildHash}</div>
|
||||
</li>
|
||||
</ul>
|
||||
<div className='divider-dark'/>
|
||||
<br></br>
|
||||
<a
|
||||
data-toggle='modal'
|
||||
|
||||
@@ -9,9 +9,6 @@ function getPrefix() {
|
||||
return UserStore.getCurrentId() + '_';
|
||||
}
|
||||
|
||||
// Also change model/utils.go ETAG_ROOT_VERSION
|
||||
var BROWSER_STORE_VERSION = '.5';
|
||||
|
||||
class BrowserStoreClass {
|
||||
constructor() {
|
||||
this.getItem = this.getItem.bind(this);
|
||||
@@ -25,9 +22,9 @@ class BrowserStoreClass {
|
||||
this.isLocalStorageSupported = this.isLocalStorageSupported.bind(this);
|
||||
|
||||
var currentVersion = localStorage.getItem('local_storage_version');
|
||||
if (currentVersion !== BROWSER_STORE_VERSION) {
|
||||
if (currentVersion !== global.window.config.Version) {
|
||||
this.clear();
|
||||
localStorage.setItem('local_storage_version', BROWSER_STORE_VERSION);
|
||||
localStorage.setItem('local_storage_version', global.window.config.Version);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ function autolinkUrls(text, tokens) {
|
||||
const linkText = match.getMatchedText();
|
||||
let url = linkText;
|
||||
|
||||
if (!url.lastIndexOf('http', 0) === 0) {
|
||||
if (url.lastIndexOf('http', 0) !== 0) {
|
||||
url = `http://${linkText}`;
|
||||
}
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user