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.
This commit is contained in:
eatdostacos 2020-04-28 15:30:28 -07:00 committed by Sean Yesmunt
parent c9f5813b81
commit 804178dd58

View file

@ -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...');
}