forked from p34709852/monkey
Added rainge to make sure our copyright year is always updated.
This commit is contained in:
parent
dcbe7b1ee0
commit
b87eb3d0d4
File diff suppressed because it is too large
Load Diff
|
@ -83,6 +83,7 @@
|
||||||
"npm": "^6.11.3",
|
"npm": "^6.11.3",
|
||||||
"pluralize": "^7.0.0",
|
"pluralize": "^7.0.0",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
|
"rainge": "^1.0.1",
|
||||||
"rc-progress": "^2.5.2",
|
"rc-progress": "^2.5.2",
|
||||||
"react": "^16.10.1",
|
"react": "^16.10.1",
|
||||||
"react-bootstrap": "^0.32.4",
|
"react-bootstrap": "^0.32.4",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {Col} from 'react-bootstrap';
|
import {Col} from 'react-bootstrap';
|
||||||
|
import rainge from 'rainge'
|
||||||
|
|
||||||
class LicensePageComponent extends React.Component {
|
class LicensePageComponent extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -18,7 +19,7 @@ class LicensePageComponent extends React.Component {
|
||||||
<h1 className="page-title">License</h1>
|
<h1 className="page-title">License</h1>
|
||||||
<div style={{'fontSize': '1.2em'}}>
|
<div style={{'fontSize': '1.2em'}}>
|
||||||
<p>
|
<p>
|
||||||
Copyright <i className="glyphicon glyphicon-copyright-mark"/> 2017 Guardicore Ltd.
|
Copyright <i className="glyphicon glyphicon-copyright-mark"/> {rainge(2015)} Guardicore Ltd.
|
||||||
<br/>
|
<br/>
|
||||||
Licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html" target="_blank">GPLv3</a>.
|
Licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html" target="_blank">GPLv3</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue