Skip to content

Commit

Permalink
Merge pull request #700 from mesosphere/feature/volumes-text
Browse files Browse the repository at this point in the history
Feature/volumes text
  • Loading branch information
Poltergeist committed Mar 21, 2016
2 parents 1d82083 + 2ad8e11 commit 8dd8db6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/js/components/LocalVolumesComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ var LocalVolumesComponent = React.createClass({
var containerPathTooltipMessage = (
<span>
The path to the directory where your application will
read and write data. The path must be non-nested,
e.g. `/var/lib/mysql`.
read and write data. The path must be non-nested and cannot contain slashes, e.g. `data`,
but not `../../../etc/opt` or `/user/data/`.
<a href={ExternalLinks.CONTAINER_PATH} target="_blank">Read more</a>.
</span>
);
Expand Down
4 changes: 2 additions & 2 deletions src/js/constants/ExternalLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const ExternalLinks = {
"marathon-ui.html#application-status-reference",
DOCS_HEALTH: "https://mesosphere.github.io/marathon/docs/" +
"marathon-ui.html#application-health-reference",
LOCAL_VOLUMES: "about:blank",
CONTAINER_PATH: "about:blank",
LOCAL_VOLUMES: "https://mesosphere.github.io/marathon/docs/persistent-volumes.html",
CONTAINER_PATH: "http://mesosphere.github.io/marathon/docs/persistent-volumes.html",
PORTS: "https://mesosphere.github.io/marathon/docs/ports.html",
JSON_EDITOR: "about:blank"
};
Expand Down

0 comments on commit 8dd8db6

Please sign in to comment.