Merge pull request #13653 from appsmithorg/fix-13652

This commit is contained in:
Arpit Mohan 2022-05-10 05:25:44 +02:00 committed by GitHub
commit cf27bbdfec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,7 @@ const STATUS_MAP: StatusMap = {
[Kind.PAGE]: (status: GitStatusData) => ({
message: `${status?.modifiedPages || 0} ${
(status?.modifiedPages || 0) <= 1 ? "page" : "pages"
} updated`,
} modified`,
iconName: "widget",
hasValue: (status?.modifiedPages || 0) > 0,
}),