From 9284a73fdeafb1b7c8c157694485a6edcda81b0d Mon Sep 17 00:00:00 2001 From: Ittay Stern Date: Tue, 10 Sep 2019 10:28:36 +0300 Subject: Add flag flag_flash_more_actions_button_in_old_view_edit Renamed from FLAG_FLASH_VIEW_IN_NEW_VIEWEDIT_SCREEN. Added features.properties.md to document the different flags. Change-Id: I819a31851eab8bed54f807f0ffb5082496677d3f Issue-ID: VID-603 Signed-off-by: Ittay Stern --- .../src/main/webapp/app/vid/scripts/constants/componentConstants.js | 2 +- .../main/webapp/app/vid/scripts/controller/InstantiationController.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'vid-app-common') diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/constants/componentConstants.js b/vid-app-common/src/main/webapp/app/vid/scripts/constants/componentConstants.js index 67a89ee74..0c6d1d74f 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/constants/componentConstants.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/constants/componentConstants.js @@ -262,7 +262,7 @@ appDS2 FLAG_VF_MODULE_RESUME_STATUS_CREATE: "FLAG_VF_MODULE_RESUME_STATUS_CREATE", FLAG_1908_RELEASE_TENANT_ISOLATION: "FLAG_1908_RELEASE_TENANT_ISOLATION", FLAG_FLASH_REPLACE_VF_MODULE: "FLAG_FLASH_REPLACE_VF_MODULE", - FLAG_FLASH_VIEW_IN_NEW_VIEWEDIT_SCREEN: "FLAG_FLASH_VIEW_IN_NEW_VIEWEDIT_SCREEN", + FLAG_FLASH_MORE_ACTIONS_BUTTON_IN_OLD_VIEW_EDIT: "FLAG_FLASH_MORE_ACTIONS_BUTTON_IN_OLD_VIEW_EDIT", } }; diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js index a21776e5d..b3afcd864 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js @@ -225,7 +225,7 @@ }; $scope.allowTransferToNewScreenAndShowButton = function (){ - if(featureFlags.isOn(COMPONENT.FEATURE_FLAGS.FLAG_FLASH_VIEW_IN_NEW_VIEWEDIT_SCREEN)) { + if(featureFlags.isOn(COMPONENT.FEATURE_FLAGS.FLAG_FLASH_MORE_ACTIONS_BUTTON_IN_OLD_VIEW_EDIT)) { return $scope.isPermitted; } return false; -- cgit