mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
bug fixed : removed word-break warning (#4809)
This commit is contained in:
parent
e80061313a
commit
71ed5bf490
1 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import React, { Suspense } from 'react';
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
import config from 'config';
|
||||
import { BrowserRouter, Route, Redirect } from 'react-router-dom';
|
||||
import { history } from '@/_helpers';
|
||||
|
|
@ -74,7 +75,7 @@ class App extends React.Component {
|
|||
const { updateAvailable, onboarded, darkMode } = this.state;
|
||||
let toastOptions = {
|
||||
style: {
|
||||
'word-break': 'break-all',
|
||||
wordBreak: 'break-all',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -85,7 +86,7 @@ class App extends React.Component {
|
|||
borderRadius: '10px',
|
||||
background: '#333',
|
||||
color: '#fff',
|
||||
'word-break': 'break-all',
|
||||
wordBreak: 'break-all',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue