aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/components/WorkspacesDashboard.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/workspaces/components/WorkspacesDashboard.js')
-rw-r--r--src/features/workspaces/components/WorkspacesDashboard.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/features/workspaces/components/WorkspacesDashboard.js b/src/features/workspaces/components/WorkspacesDashboard.js
index a8b3b376c..dd4381a15 100644
--- a/src/features/workspaces/components/WorkspacesDashboard.js
+++ b/src/features/workspaces/components/WorkspacesDashboard.js
@@ -48,7 +48,13 @@ const messages = defineMessages({
48 }, 48 },
49}); 49});
50 50
51const styles = (theme) => ({ 51const styles = theme => ({
52 table: {
53 width: '100%',
54 '& td': {
55 padding: '10px',
56 },
57 },
52 createForm: { 58 createForm: {
53 height: 'auto', 59 height: 'auto',
54 }, 60 },
@@ -164,7 +170,7 @@ class WorkspacesDashboard extends Component {
164 {intl.formatMessage(messages.workspacesRequestFailed)} 170 {intl.formatMessage(messages.workspacesRequestFailed)}
165 </Infobox> 171 </Infobox>
166 ) : ( 172 ) : (
167 <table className="workspace-table"> 173 <table className={classes.table}>
168 {/* ===== Workspaces list ===== */} 174 {/* ===== Workspaces list ===== */}
169 <tbody> 175 <tbody>
170 {workspaces.map(workspace => ( 176 {workspaces.map(workspace => (