Skip to content

Commit

Permalink
Add PR template, run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Sep 23, 2022
1 parent 66d3971 commit 33941ce
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## What does this PR do?

## Checklist before merging
- [ ] If its a frontend feature, I have ran prettier (`cd frontend; npm run format`).
13 changes: 10 additions & 3 deletions frontend/src/components/Dialogs/Stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,16 @@ const StatsDialog = ({

<ListItem>
<ListItemIcon>
<RoboSatsNoTextIcon sx={{width:'1.4em',height:'1.4em',right:'0.2em', position:'relative'}}/>
<RoboSatsNoTextIcon
sx={{ width: '1.4em', height: '1.4em', right: '0.2em', position: 'relative' }}
/>
</ListItemIcon>
<ListItemText primary={`${t("Client")} ${clientVersion} - ${t("Coordinator")} ${coordinatorVersion}`} secondary={t('RoboSats version')} />
<ListItemText
primary={`${t('Client')} ${clientVersion} - ${t(
'Coordinator',
)} ${coordinatorVersion}`}
secondary={t('RoboSats version')}
/>
</ListItem>

<Divider />
Expand All @@ -96,7 +103,7 @@ const StatsDialog = ({
<ListItemIcon>
<DnsIcon />
</ListItemIcon>
<ListItemText secondary={`${t("LN Node")}: ${nodeAlias}`}>
<ListItemText secondary={`${t('LN Node')}: ${nodeAlias}`}>
<Link
target='_blank'
href={`https://1ml.com/testnet/node/${nodeId}`}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Robots/RobotAvatar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const RobotAvatar: React.FC<DepthChartProps> = ({
borderRadius: '50%',
transform: 'scaleX(-1)',
border: '0.3px solid #555',
filter: 'dropShadow(0.5px 0.5px 0.5px #000000)'
filter: 'dropShadow(0.5px 0.5px 0.5px #000000)',
}}
/>
</div>
Expand Down
8 changes: 4 additions & 4 deletions frontend/static/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@
"On your own sovereign node": "On your own sovereign node",
"Simply refresh your Tor Browser tab (or press Ctrl+Shift+R)": "Simply refresh your Tor Browser tab (or press Ctrl+Shift+R)",
"On remotely served client via web": "On remotely served client via web",
"Client":"Client",
"Coordinator":"Coordinator",
"RoboSats version":"RoboSats version",
"LN Node":"LN Node",
"Client": "Client",
"Coordinator": "Coordinator",
"RoboSats version": "RoboSats version",
"LN Node": "LN Node",

"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Order Box",
Expand Down

0 comments on commit 33941ce

Please sign in to comment.