Этот коммит содержится в:
Asaad Mahmood
2015-10-06 17:10:27 +05:00
родитель 06fbb8b7df 4c297d05f7
Коммит 17681c2b18
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@@ -1,7 +1,7 @@
# Production Installation on Ubuntu 14.04 LTS # Production Installation on Ubuntu 14.04 LTS
## Install Ubuntu Server 14.04 LTS ## Install Ubuntu Server (x64) 14.04 LTS
1. Set up 3 machines with Ubuntu 14.04 with 2GB of RAM or more. The servers will be used for the Load Balancer, Mattermost, and Database. 1. Set up 3 machines with Ubuntu 14.04 with 2GB of RAM or more. The servers will be used for the Load Balancer, Mattermost (this must be x64 to use pre-built binaries), and Database.
1. Make sure the system is up to date with the most recent security patches. 1. Make sure the system is up to date with the most recent security patches.
* ``` sudo apt-get update``` * ``` sudo apt-get update```
* ``` sudo apt-get upgrade``` * ``` sudo apt-get upgrade```

Просмотреть файл

@@ -350,7 +350,7 @@ export default class ViewImageModal extends React.Component {
totalFiles={this.props.filenames.length} totalFiles={this.props.filenames.length}
filename={name} filename={name}
fileURL={fileUrl} fileURL={fileUrl}
onGetPublicLinkPressed={this.getPublicLink} getPublicLink={this.getPublicLink}
/> />
</div> </div>
{leftArrow} {leftArrow}

Просмотреть файл

@@ -14,7 +14,7 @@ export default class ViewImagePopoverBar extends React.Component {
href='#' href='#'
className='public-link text' className='public-link text'
data-title='Public Image' data-title='Public Image'
onClick={this.getPublicLink} onClick={this.props.getPublicLink}
> >
{'Get Public Link'} {'Get Public Link'}
</a> </a>
@@ -62,5 +62,5 @@ ViewImagePopoverBar.propTypes = {
totalFiles: React.PropTypes.number.isRequired, totalFiles: React.PropTypes.number.isRequired,
filename: React.PropTypes.string.isRequired, filename: React.PropTypes.string.isRequired,
fileURL: React.PropTypes.string.isRequired, fileURL: React.PropTypes.string.isRequired,
onGetPublicLinkPressed: React.PropTypes.func.isRequired getPublicLink: React.PropTypes.func.isRequired
}; };