From 850b9db8744c47b3f42b877078678f62ce77e38d Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 13 Mar 2019 21:16:02 +0100 Subject: webui: Use Timeline API instead of raw operations --- webui/src/bug/SetTitle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webui/src/bug/SetTitle.js') diff --git a/webui/src/bug/SetTitle.js b/webui/src/bug/SetTitle.js index 5b17c431..a32cf791 100644 --- a/webui/src/bug/SetTitle.js +++ b/webui/src/bug/SetTitle.js @@ -27,8 +27,8 @@ const SetTitle = ({ op, classes }) => { }; SetTitle.fragment = gql` - fragment SetTitle on Operation { - ... on SetTitleOperation { + fragment SetTitle on TimelineItem { + ... on SetTitleTimelineItem { date author { name -- cgit From 22089b5e628f1356e517d24d0346a8ec2def97fc Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Sat, 30 Mar 2019 20:48:19 +0100 Subject: webui: Rework timeline style --- webui/src/bug/SetTitle.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'webui/src/bug/SetTitle.js') diff --git a/webui/src/bug/SetTitle.js b/webui/src/bug/SetTitle.js index a32cf791..f5c48568 100644 --- a/webui/src/bug/SetTitle.js +++ b/webui/src/bug/SetTitle.js @@ -7,6 +7,7 @@ import Date from '../Date'; const styles = theme => ({ main: { ...theme.typography.body2, + marginLeft: theme.spacing.unit + 40, }, bold: { fontWeight: 'bold', @@ -16,7 +17,7 @@ const styles = theme => ({ const SetTitle = ({ op, classes }) => { return (
- + changed the title from {op.was} to -- cgit