We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 075522b commit 4e5de5aCopy full SHA for 4e5de5a
src/modules/project/load/DownloadProjectPage.js
@@ -40,8 +40,8 @@ const DownloadProjectPage = ({openMainMenuPanel}) => {
40
};
41
42
const getTextOverride = () => {
43
- if (project.id === projectToDownload.id && project.modified_timestamp > projectToDownload.modified_timestamp) {
44
- return 'The current project is newer than the project on the server. Are you sure you want to'
+ if (project.id === projectToDownload.id && project.modified_timestamp >= projectToDownload.modified_timestamp) {
+ return 'The select project to download is NOT NEWER than the current project. Are you sure you want to'
45
+ ' overwrite the current project?';
46
}
47
else return undefined;
0 commit comments