mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-26 13:55:00 +03:00
Update and clean dependencies
This commit is contained in:
parent
81c53c4b33
commit
cd8fc15a60
1
.gitignore
vendored
1
.gitignore
vendored
@ -662,3 +662,4 @@ frontend/src/components/payment-methods/webp*
|
||||
frontend/static/frontend/**
|
||||
docs/.jekyll-cache*
|
||||
docs/_site*
|
||||
commit_sha.txt
|
5040
frontend/package-lock.json
generated
5040
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -43,24 +43,21 @@
|
||||
"@mui/base": "^5.0.0-alpha.77",
|
||||
"@mui/icons-material": "^5.2.5",
|
||||
"@mui/lab": "^5.0.0-alpha.73",
|
||||
"@mui/material": "^5.2.7",
|
||||
"@mui/system": "^5.2.6",
|
||||
"@mui/material": "^5.9.0",
|
||||
"@mui/system": "^5.9.0",
|
||||
"@mui/x-data-grid": "^5.2.2",
|
||||
"country-flag-icons": "^1.4.25",
|
||||
"date-fns": "^2.28.0",
|
||||
"i18next": "^21.6.14",
|
||||
"i18next-browser-languagedetector": "^6.1.4",
|
||||
"i18next-http-backend": "^1.4.0",
|
||||
"i18next-xhr-backend": "^3.2.2",
|
||||
"js-sha256": "^0.9.0",
|
||||
"material-ui-image": "^3.3.2",
|
||||
"openpgp": "^5.2.1",
|
||||
"react": "^18.0.0",
|
||||
"react": "^18.2.0",
|
||||
"react-countdown": "^2.3.2",
|
||||
"react-dom": "^18.1.0",
|
||||
"react-i18next": "^11.16.2",
|
||||
"react-native": "^0.69.1",
|
||||
"react-native-svg": "^12.3.0",
|
||||
"react-qr-code": "^2.0.3",
|
||||
"react-qr-reader": "^2.2.1",
|
||||
"react-responsive": "^9.0.0-beta.6",
|
||||
|
@ -396,12 +396,12 @@ class BookPage extends Component {
|
||||
inputProps={{
|
||||
style: {textAlign:"center"}
|
||||
}}
|
||||
onChange={this.handleCurrencyChange}
|
||||
> <MenuItem value={0}><div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code="ANY" />{" "+t("ANY_currency")}</div></MenuItem>
|
||||
{
|
||||
Object.entries(currencyDict)
|
||||
.map( ([key, value]) => <MenuItem key={key} value={parseInt(key)}><div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code={value} />{" "+value}</div></MenuItem> )
|
||||
}
|
||||
onChange={this.handleCurrencyChange}>
|
||||
<MenuItem value={0}><div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code="ANY" />{" "+t("ANY_currency")}</div></MenuItem>
|
||||
{Object.entries(currencyDict)
|
||||
.map( ([key, value]) => <MenuItem key={key} value={parseInt(key)}>
|
||||
<div style={{display:'flex',alignItems:'center', flexWrap:'wrap'}}><FlagWithProps code={value}/>{" "+value}</div>
|
||||
</MenuItem> )}
|
||||
</Select>
|
||||
</FormControl>
|
||||
</Grid>
|
||||
|
Loading…
Reference in New Issue
Block a user