aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/components/WorkspacesDashboard.js
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-07-02 19:49:55 -0600
committerLibravatar GitHub <noreply@github.com>2021-07-03 07:19:55 +0530
commit33123c354b79f7951423dd75097b11e7eb075f99 (patch)
tree29f6e857f02d0e0fc67d89a657a54a865ed5538a /src/features/workspaces/components/WorkspacesDashboard.js
parentMinor refactoring to move all runtime configs from 'config.js' into 'environm... (diff)
downloadferdium-app-33123c354b79f7951423dd75097b11e7eb075f99.tar.gz
ferdium-app-33123c354b79f7951423dd75097b11e7eb075f99.tar.zst
ferdium-app-33123c354b79f7951423dd75097b11e7eb075f99.zip
Upgrade various dependencies to latest part 2 (#1557)
* Upgrade various dependencies to latest, remove unnecessary electron-hunspell - upgrade eslint and friends to latest - remove deprecated 'node-sass' in favor of 'sass' - disable new rules from 'eslint-config-airbnb' that are conflicting with current code style - add workspace config for 'vscode' that silences 'experimentalDecorator' warning and forces 'prettier' to single quote * Run yarn lint to autofix with new ruleset and worked down lint issues to zero
Diffstat (limited to 'src/features/workspaces/components/WorkspacesDashboard.js')
-rw-r--r--src/features/workspaces/components/WorkspacesDashboard.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/features/workspaces/components/WorkspacesDashboard.js b/src/features/workspaces/components/WorkspacesDashboard.js
index a90bb37e9..cfaacd56e 100644
--- a/src/features/workspaces/components/WorkspacesDashboard.js
+++ b/src/features/workspaces/components/WorkspacesDashboard.js
@@ -184,7 +184,7 @@ class WorkspacesDashboard extends Component {
184 {getUserWorkspacesRequest.isExecuting ? ( 184 {getUserWorkspacesRequest.isExecuting ? (
185 <Loader /> 185 <Loader />
186 ) : ( 186 ) : (
187 <Fragment> 187 <>
188 {/* ===== Workspace could not be loaded error ===== */} 188 {/* ===== Workspace could not be loaded error ===== */}
189 {getUserWorkspacesRequest.error ? ( 189 {getUserWorkspacesRequest.error ? (
190 <Infobox 190 <Infobox
@@ -197,7 +197,7 @@ class WorkspacesDashboard extends Component {
197 {intl.formatMessage(messages.workspacesRequestFailed)} 197 {intl.formatMessage(messages.workspacesRequestFailed)}
198 </Infobox> 198 </Infobox>
199 ) : ( 199 ) : (
200 <Fragment> 200 <>
201 {workspaces.length === 0 ? ( 201 {workspaces.length === 0 ? (
202 <div className="align-middle settings__empty-state"> 202 <div className="align-middle settings__empty-state">
203 {/* ===== Workspaces empty state ===== */} 203 {/* ===== Workspaces empty state ===== */}
@@ -222,9 +222,9 @@ class WorkspacesDashboard extends Component {
222 </tbody> 222 </tbody>
223 </table> 223 </table>
224 )} 224 )}
225 </Fragment> 225 </>
226 )} 226 )}
227 </Fragment> 227 </>
228 )} 228 )}
229 </> 229 </>
230 )} 230 )}