Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Update button label and in-app docs for restage button #1303

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions static_src/components/app_container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default class AppContainer extends React.Component {
let loading;

let handler = this.handleRestart;
let actionText = "Restart app";
let actionText = "Restage app";
if (!AppStore.isRunning(this.state.app)) {
handler = this.handleStart;
actionText = "Start app";
Expand All @@ -167,7 +167,7 @@ export default class AppContainer extends React.Component {
}

if (AppStore.isRestarting(this.state.app)) {
loading = <Loading text="Restarting app" style="inline" />;
loading = <Loading text="Restaging app" style="inline" />;
}

const action = loading || (
Expand Down
2 changes: 1 addition & 1 deletion static_src/skins/cg/home_page/info_activities.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const InfoActivities = ({ className }) => (
<li>Create and bind service instances for your apps.</li>
<li>Create and bind routes for your apps.</li>
<li>Change memory allocation and number of instances for your apps.</li>
<li>Restart your apps.</li>
<li>Start and restage your apps.</li>
<li>Manage permissions for users of your orgs and spaces.</li>
</ul>
</section>
Expand Down