aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/components/WorkspacesDashboard.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-09-05 10:16:43 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-09-05 10:16:43 +0200
commitf0b46fc9655b9e13039f1e4f1b7c0c0def0c0241 (patch)
tree5906a8b32c7ece712f9215a46464df7f25281086 /src/features/workspaces/components/WorkspacesDashboard.js
parentupdate settings ui (diff)
downloadferdium-app-f0b46fc9655b9e13039f1e4f1b7c0c0def0c0241.tar.gz
ferdium-app-f0b46fc9655b9e13039f1e4f1b7c0c0def0c0241.tar.zst
ferdium-app-f0b46fc9655b9e13039f1e4f1b7c0c0def0c0241.zip
Fix linting issues
Diffstat (limited to 'src/features/workspaces/components/WorkspacesDashboard.js')
-rw-r--r--src/features/workspaces/components/WorkspacesDashboard.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/features/workspaces/components/WorkspacesDashboard.js b/src/features/workspaces/components/WorkspacesDashboard.js
index fc636dd95..70e213912 100644
--- a/src/features/workspaces/components/WorkspacesDashboard.js
+++ b/src/features/workspaces/components/WorkspacesDashboard.js
@@ -50,7 +50,7 @@ const messages = defineMessages({
50 }, 50 },
51}); 51});
52 52
53const styles = theme => ({ 53const styles = () => ({
54 table: { 54 table: {
55 width: '100%', 55 width: '100%',
56 '& td': { 56 '& td': {
@@ -96,8 +96,6 @@ class WorkspacesDashboard extends Component {
96 onCreateWorkspaceSubmit: PropTypes.func.isRequired, 96 onCreateWorkspaceSubmit: PropTypes.func.isRequired,
97 onWorkspaceClick: PropTypes.func.isRequired, 97 onWorkspaceClick: PropTypes.func.isRequired,
98 workspaces: MobxPropTypes.arrayOrObservableArray.isRequired, 98 workspaces: MobxPropTypes.arrayOrObservableArray.isRequired,
99 isPersonalUser: PropTypes.bool.isRequired,
100 onUpgradeAccount: PropTypes.func.isRequired,
101 }; 99 };
102 100
103 static contextTypes = { 101 static contextTypes = {