diff --git a/shesha-reactjs/src/providers/appConfigurator/index.tsx b/shesha-reactjs/src/providers/appConfigurator/index.tsx index 878de1eba1..185a1f19d2 100644 --- a/shesha-reactjs/src/providers/appConfigurator/index.tsx +++ b/shesha-reactjs/src/providers/appConfigurator/index.tsx @@ -127,7 +127,7 @@ const AppConfiguratorProvider: FC( { - name: 'Set item ready', + name: 'Set Item Ready', owner: actionsOwner, ownerUid: SheshaActionOwners.ConfigurationFramework, hasArguments: true, @@ -155,7 +155,7 @@ const AppConfiguratorProvider: FC( { - name: 'Publish item', + name: 'Publish Item', owner: actionsOwner, ownerUid: SheshaActionOwners.ConfigurationFramework, hasArguments: true, diff --git a/shesha-reactjs/src/providers/dynamicActions/implementations/dataSourceDynamicMenu/urlDynamicMenuItem/index.tsx b/shesha-reactjs/src/providers/dynamicActions/implementations/dataSourceDynamicMenu/urlDynamicMenuItem/index.tsx index 6d5cd8f4c7..6bdbfe6cee 100644 --- a/shesha-reactjs/src/providers/dynamicActions/implementations/dataSourceDynamicMenu/urlDynamicMenuItem/index.tsx +++ b/shesha-reactjs/src/providers/dynamicActions/implementations/dataSourceDynamicMenu/urlDynamicMenuItem/index.tsx @@ -53,7 +53,7 @@ export const UrlActions: FC> = return ( diff --git a/shesha-reactjs/src/providers/dynamicModal/index.tsx b/shesha-reactjs/src/providers/dynamicModal/index.tsx index f315cbf11e..5c2a391fcb 100644 --- a/shesha-reactjs/src/providers/dynamicModal/index.tsx +++ b/shesha-reactjs/src/providers/dynamicModal/index.tsx @@ -32,7 +32,7 @@ const DynamicModalProvider: FC> = useConfigurableAction( { - name: 'Show confirmation dialog', + name: 'Show Confirmation Dialog', owner: 'Common', ownerUid: SheshaActionOwners.Common, hasArguments: true, @@ -71,7 +71,7 @@ const DynamicModalProvider: FC> = useConfigurableAction( { - name: 'Show dialog', + name: 'Show Dialog', owner: 'Common', ownerUid: SheshaActionOwners.Common, hasArguments: true, @@ -155,7 +155,7 @@ const DynamicModalProvider: FC> = //#region Close the latest Dialog useConfigurableAction( { - name: 'Close dialog', + name: 'Close Dialog', owner: 'Common', ownerUid: SheshaActionOwners.Common, hasArguments: true, diff --git a/shesha-reactjs/src/providers/form/configurableActions/index.ts b/shesha-reactjs/src/providers/form/configurableActions/index.ts index bc99419a58..fdd878ce0e 100644 --- a/shesha-reactjs/src/providers/form/configurableActions/index.ts +++ b/shesha-reactjs/src/providers/form/configurableActions/index.ts @@ -19,7 +19,7 @@ export const useShaFormActions = ({ name, isActionsOwner, shaForm }: UseShaFormA useConfigurableAction( { - name: 'Start edit', + name: 'Start Edit', owner: name, ownerUid: actionsOwnerUid, hasArguments: false, @@ -34,7 +34,7 @@ export const useShaFormActions = ({ name, isActionsOwner, shaForm }: UseShaFormA useConfigurableAction( { - name: 'Cancel edit', + name: 'Cancel Edit', owner: name, ownerUid: actionsOwnerUid, hasArguments: false, diff --git a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/api-call.ts b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/api-call.ts index e0acd4ae92..e35caf7c91 100644 --- a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/api-call.ts +++ b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/api-call.ts @@ -100,7 +100,7 @@ export const useApiCallAction = () => { isPermament: true, owner: 'Common', ownerUid: SheshaActionOwners.Common, - name: 'API call', + name: 'API Call', hasArguments: true, argumentsFormMarkup: apiCallArgumentsForm, executer: (actionArgs, _context) => { diff --git a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/configuration-items-import.tsx b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/configuration-items-import.tsx index 73ad01fbc3..6c33acbe14 100644 --- a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/configuration-items-import.tsx +++ b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/configuration-items-import.tsx @@ -14,7 +14,7 @@ import { useAppConfiguratorState, useDynamicModals } from '@/providers'; import { useConfigurableAction } from '@/providers/configurableActionsDispatcher'; import { ValidationErrors } from '@/components'; -const actionsOwner = 'Configuration items'; +const actionsOwner = 'Configuration Items'; interface IConfigurationItemsExportFooterProps { hideModal: () => void; diff --git a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/execute-script.ts b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/execute-script.ts index 3270e7792e..d895ca78ae 100644 --- a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/execute-script.ts +++ b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/execute-script.ts @@ -115,7 +115,7 @@ export const useExecuteScriptAction = () => { isPermament: true, owner: 'Common', ownerUid: SheshaActionOwners.Common, - name: 'Execute script', + name: 'Execute Script', hasArguments: true, argumentsFormMarkup: (formArgs) => executeScriptArgumentsForm(formArgs), executer: (actionArgs, context) => { diff --git a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/show-message.ts b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/show-message.ts index f2152b8026..1a24709f63 100644 --- a/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/show-message.ts +++ b/shesha-reactjs/src/providers/sheshaApplication/configurable-actions/show-message.ts @@ -42,7 +42,7 @@ export const useShowMessageAction = () => { isPermament: true, owner: 'Common', ownerUid: SheshaActionOwners.Common, - name: 'Show message', + name: 'Show Message', hasArguments: true, argumentsFormMarkup: showMessageArgumentsForm, executer: (actionArgs, _context) => {