mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-28 15:29:21 +00:00
refactor: update envs to environments
This commit is contained in:
@ -71,11 +71,11 @@ export const SelectionPanel = ({
|
||||
|
||||
const getDeleteModalTitle = () => {
|
||||
if (selectedFolderCount > 0 && selectedKeysCount > 0) {
|
||||
return "Do you want to delete the selected secrets and folders across envs?";
|
||||
} else if (selectedFolderCount > 0 && selectedKeysCount === 0) {
|
||||
return "Do you want to delete the selected folders across envs?";
|
||||
return "Do you want to delete the selected secrets and folders across environments?";
|
||||
} else if (selectedKeysCount > 0 && selectedFolderCount === 0) {
|
||||
return "Do you want to delete the selected secrets across environments?";
|
||||
} else {
|
||||
return "Do you want to delete the selected secrets across envs?";
|
||||
return "Do you want to delete the selected folders across environments?";
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user