From 07406ce759552cd0b0e71f479bb0683ecfb63d7e Mon Sep 17 00:00:00 2001 From: Tanya Fomina Date: Sun, 12 Jan 2025 00:19:26 +0300 Subject: [PATCH] Show billing menu item for debug workspace --- src/components/workspace/settings/Layout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/workspace/settings/Layout.vue b/src/components/workspace/settings/Layout.vue index 158f9519c..209af0ae9 100644 --- a/src/components/workspace/settings/Layout.vue +++ b/src/components/workspace/settings/Layout.vue @@ -124,7 +124,7 @@ export default Vue.extend({ * Check if billing button should be visible in menu */ shouldShowBilling(): boolean { - return false; + return this.workspace?.isDebug === true; }, }, async created(): Promise {