Skip to content

Commit

Permalink
refactor: add subtitle to clarify the table source
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-i-am committed Oct 5, 2023
1 parent 8a5305b commit 25c8dbc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ValidationPanelPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ const ValidationPanelPage = () => {
: (
<div className="container-lg">
<Stack direction="horizontal" className="my-5 justify-content-between">
<h1>{intl.formatMessage(messages.heading)}</h1>
<div>
<h1>{intl.formatMessage(messages.heading)}</h1>
<h3>{isValidator ? 'Course validation processes' : 'My course validation processes' }</h3>
</div>
{!isValidator && <Button onClick={open} variant="brand">{intl.formatMessage(messages.newRecordCreatorButton)}</Button>}
</Stack>
<ValidationTableLayout
Expand Down

0 comments on commit 25c8dbc

Please sign in to comment.