Skip to content

Commit

Permalink
Fix Prettier errors
Browse files Browse the repository at this point in the history
Signed-off-by: mazhead <mazhead@gmail.com>
  • Loading branch information
mazhead committed Mar 15, 2021
1 parent da6e1c9 commit e59d2d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Expand Up @@ -41,7 +41,9 @@ function PromptProjectDetail({ i18n, resource }) {
<ListItem>{i18n._(t`Delete on Update`)}</ListItem>
)}
{scm_track_submodules && (
<ListItem>{i18n._(t`Track submodules latest commit on branch`)}</ListItem>
<ListItem>
{i18n._(t`Track submodules latest commit on branch`)}
</ListItem>
)}
{scm_update_on_launch && (
<ListItem>{i18n._(t`Update Revision on Launch`)}</ListItem>
Expand Down
Expand Up @@ -68,7 +68,9 @@ function ProjectDetail({ project, i18n }) {
<ListItem>{i18n._(t`Delete on Update`)}</ListItem>
)}
{scm_track_submodules && (
<ListItem>{i18n._(t`Track submodules latest commit on branch`)}</ListItem>
<ListItem>
{i18n._(t`Track submodules latest commit on branch`)}
</ListItem>
)}
{scm_update_on_launch && (
<ListItem>{i18n._(t`Update Revision on Launch`)}</ListItem>
Expand Down

0 comments on commit e59d2d1

Please sign in to comment.