|
|
@@ -1,10 +1,6 @@
|
|
|
import React from "react";
|
|
|
|
|
|
import Button from "components/porter/Button";
|
|
|
-import Icon from "components/porter/Icon";
|
|
|
-import Spacer from "components/porter/Spacer";
|
|
|
-
|
|
|
-import save from "assets/save-01.svg";
|
|
|
|
|
|
import { type ButtonStatus } from "./AppDataContainer";
|
|
|
|
|
|
@@ -26,15 +22,13 @@ const AppSaveButton: React.FC<Props> = ({
|
|
|
<Button
|
|
|
type="submit"
|
|
|
status={status}
|
|
|
- loadingText={"Saving..."}
|
|
|
+ loadingText={"Deploying..."}
|
|
|
disabled={isDisabled}
|
|
|
disabledTooltipMessage={disabledTooltipMessage}
|
|
|
height={height}
|
|
|
disabledTooltipPosition={disabledTooltipPosition}
|
|
|
>
|
|
|
- <Icon src={save} height={"13px"} />
|
|
|
- <Spacer inline x={0.5} />
|
|
|
- Save
|
|
|
+ Deploy
|
|
|
</Button>
|
|
|
);
|
|
|
};
|