diff --git a/src/components/management/EditDictionaryModal/index.jsx b/src/components/management/EditDictionaryModal/index.jsx index 239e363..c366007 100644 --- a/src/components/management/EditDictionaryModal/index.jsx +++ b/src/components/management/EditDictionaryModal/index.jsx @@ -13,6 +13,7 @@ const DISPLAY = { DETAILS: 1, LINGUISTICS: 2, SETTINGS: 3, + ACTIONS: 4, } export class EditDictionaryModal extends Component { @@ -126,6 +127,14 @@ export class EditDictionaryModal extends Component { ); break; } + + case DISPLAY.ACTIONS : { + displayJSX = ( +
+

Actions like import, export, delete, etc.

+
+ ); + } } return ( @@ -293,6 +302,11 @@ export class EditDictionaryModal extends Component { Settings +
  • + + Actions + +
  • ),