diff --git a/bookmark_front/src/views/public/about/index.vue b/bookmark_front/src/views/public/about/index.vue index 4974e50..40d3f16 100644 --- a/bookmark_front/src/views/public/about/index.vue +++ b/bookmark_front/src/views/public/about/index.vue @@ -64,6 +64,9 @@ export default { }, methods: { checkVersion: function(version, latestVersion) { + if (version === latestVersion) { + return false; + } let versions = version.split("."); let latestVersions = latestVersion.split("."); for (let i = 0; i < versions.length; i++) {