From 804178dd5803a02c1538a1fc41c7b6f9fe6b0714 Mon Sep 17 00:00:00 2001 From: eatdostacos <64234158+eatdostacos@users.noreply.github.com> Date: Tue, 28 Apr 2020 15:30:28 -0700 Subject: [PATCH] Changed Correctly I did this as a pull request earlier and then I edited some other stuff in my repo and it added that also. This is a working change. --- ui/component/publishForm/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index e96bf7c6e..c97c1d482 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -103,7 +103,7 @@ function PublishForm(props: Props) { let submitLabel; if (isStillEditing) { - submitLabel = !publishing ? __('Edit') : __('Editing...'); + submitLabel = !publishing ? __('Save') : __('Saving...'); } else { submitLabel = !publishing ? __('Publish') : __('Publishing...'); }