ryuichi-e 5 лет назад
Родитель
Сommit
f07b2eb338
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/client/js/components/Admin/Security/ShareLinkSetting.jsx

+ 3 - 3
src/client/js/components/Admin/Security/ShareLinkSetting.jsx

@@ -1,4 +1,4 @@
-import React from 'react';
+import React, { Fragment } from 'react';
 import PropTypes from 'prop-types';
 import { withTranslation } from 'react-i18next';
 
@@ -54,7 +54,7 @@ class ShareLinkSetting extends React.Component {
 
   render() {
     return (
-      <>
+      <Fragment>
         <div className="mb-3">
           <h2 className="alert-anchor border-bottom">Shared Link List</h2>
         </div>
@@ -81,7 +81,7 @@ class ShareLinkSetting extends React.Component {
           </table>
         </div>
 
-      </>
+      </Fragment>
     );
   }