Skip to content

Commit

Permalink
Instructions empty state (#1165)
Browse files Browse the repository at this point in the history
  • Loading branch information
loiswells97 authored and conorriches committed Jan 16, 2025
1 parent 18984f8 commit 73f35fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Show instructions option in sidebar if instructions are editable (#1164)
- Open instructions panel by default if instructions are editable (#1164)
- Downloading project instructions (#1160)
- Downloading project instructions (#1160)
- Show instructions option in sidebar if instructions are editable (#1164)
- Open instructions panel by default if instructions are editable (#1164)
- Instructions empty state to show when instructions are editable (#1165)

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ const InstructionsPanel = () => {
}}
>
<TabList>
<Tab className="react-tabs__tab project-instructions__tab">{t("instructionsPanel.edit")}</Tab>
<Tab className="react-tabs__tab project-instructions__tab">
{t("instructionsPanel.edit")}
</Tab>
<Tab>{t("instructionsPanel.view")}</Tab>
</TabList>
<TabPanel>
Expand Down

0 comments on commit 73f35fd

Please sign in to comment.