diff --git a/src/Components/Editor/Editor.tsx b/src/Components/Editor/Editor.tsx
index cf9d75a..49b704d 100644
--- a/src/Components/Editor/Editor.tsx
+++ b/src/Components/Editor/Editor.tsx
@@ -38,6 +38,7 @@ function InitActions(
'elements-sidebar-row',
[{
text: 'Delete',
+ title: 'Delete the container',
action: (target: HTMLElement) => {
const id = target.id;
const newHistory = DeleteContainer(
@@ -53,6 +54,7 @@ function InitActions(
'symbols-sidebar-row',
[{
text: 'Delete',
+ title: 'Delete the container',
action: (target: HTMLElement) => {
const id = target.id;
const newHistory = DeleteSymbol(
@@ -83,6 +85,7 @@ function InitActions(
const currentState = GetCurrentHistoryState(history, historyCurrentStep);
const newAction: IMenuAction = {
text: action.Label,
+ title: action.Description,
action: GetAction(
action,
currentState,
@@ -320,7 +323,7 @@ export function Editor(props: IEditorProps): JSX.Element {