From 292a517152b59e8eebf638ee32b109f4ece25cc1 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Sat, 3 Jul 2021 16:37:22 +0300 Subject: [PATCH] [SSE mobile] Correct in edit cell --- .../mobile/src/controller/edit/EditCell.jsx | 6 +----- apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx index 8554350ce6..37fd07f146 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx @@ -1,8 +1,4 @@ import React, {Component} from 'react'; -import { f7 } from 'framework7-react'; -import {Device} from '../../../../../common/mobile/utils/device'; -import {observer, inject} from "mobx-react"; - import { EditCell } from '../../view/edit/EditCell'; class EditCellController extends Component { @@ -210,4 +206,4 @@ class EditCellController extends Component { } } -export default inject("storeCellSettings")(observer(EditCellController)); \ No newline at end of file +export default EditCellController; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 282238517b..c2980ee4a4 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -1,4 +1,4 @@ -import React, {Fragment, useState, useEffect} from 'react'; +import React, {Fragment, useState} from 'react'; import {observer, inject} from "mobx-react"; import {f7, List, ListItem, Icon, Row, Button, Page, Navbar, Segmented, BlockTitle, NavRight, Link, Toggle} from 'framework7-react'; import { useTranslation } from 'react-i18next';