From f7c76fd1f7fadbe9594eff28cc7308a1ef3e321c Mon Sep 17 00:00:00 2001 From: chiayin Date: Thu, 22 Feb 2024 10:42:40 +0800 Subject: [PATCH] feat: Performance not show SAVE button done. --- src/components/Navbar.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index bce14e0..7e806a9 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue @@ -37,8 +37,8 @@ - -
+ +
@@ -109,6 +109,9 @@ export default { result = ['FILES', 'UPLOAD'].includes(this.navViewName) ? false : true; return result; + }, + noShowSaveButton: function() { + return this.navViewName === 'UPLOAD' || this.navViewName === 'COMPARE' || this.isActive === 'PERFORMANCE' ? true : false; } }, watch: {