Compare commits
1 Commits
renovate/n
...
75c81ac523
Author | SHA1 | Date | |
---|---|---|---|
75c81ac523 |
@ -6,7 +6,7 @@ name: default
|
||||
steps:
|
||||
# Frontend
|
||||
- name: web_build
|
||||
image: node:24
|
||||
image: node:23
|
||||
volumes:
|
||||
- name: web_app
|
||||
path: /tmp/web_build
|
||||
|
4
moneymgr_backend/Cargo.lock
generated
4
moneymgr_backend/Cargo.lock
generated
@ -1100,9 +1100,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "diesel"
|
||||
version = "2.2.12"
|
||||
version = "2.2.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "229850a212cd9b84d4f0290ad9d294afc0ae70fccaa8949dbe8b43ffafa1e20c"
|
||||
checksum = "a917a9209950404d5be011c81d081a2692a822f73c3d6af586f0cab5ff50f614"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"byteorder",
|
||||
|
@ -6,7 +6,7 @@ edition = "2024"
|
||||
[dependencies]
|
||||
env_logger = "0.11.8"
|
||||
log = "0.4.27"
|
||||
diesel = { version = "2.2.12", features = ["postgres", "r2d2"] }
|
||||
diesel = { version = "2.2.11", features = ["postgres", "r2d2"] }
|
||||
diesel_migrations = "2.2.0"
|
||||
clap = { version = "4.5.41", features = ["env", "derive"] }
|
||||
actix-web = "4.11.0"
|
||||
|
@ -56,7 +56,7 @@ impl FromRequest for AuthExtractor {
|
||||
};
|
||||
|
||||
Box::pin(async move {
|
||||
// Check for authentication using API token
|
||||
// Check for authentication using OpenID
|
||||
if let Some(token) = req.headers().get(constants::API_TOKEN_HEADER) {
|
||||
let Ok(jwt_token) = token.to_str() else {
|
||||
return Err(actix_web::error::ErrorBadRequest(
|
||||
|
1653
moneymgr_web/package-lock.json
generated
1653
moneymgr_web/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -18,8 +18,8 @@
|
||||
"@mdi/react": "^1.6.1",
|
||||
"@mui/icons-material": "^7.1.2",
|
||||
"@mui/material": "^7.1.2",
|
||||
"@mui/x-charts": "^8.8.0",
|
||||
"@mui/x-data-grid": "^8.8.0",
|
||||
"@mui/x-charts": "^8.7.0",
|
||||
"@mui/x-data-grid": "^8.7.0",
|
||||
"@mui/x-date-pickers": "^8.7.0",
|
||||
"date-and-time": "^3.6.0",
|
||||
"dayjs": "^1.11.13",
|
||||
@ -32,15 +32,15 @@
|
||||
"ts-pattern": "^5.7.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.31.0",
|
||||
"@eslint/js": "^9.30.1",
|
||||
"@types/react": "^19.1.8",
|
||||
"@types/react-dom": "^19.1.6",
|
||||
"@vitejs/plugin-react": "^4.6.0",
|
||||
"eslint": "^9.26.0",
|
||||
"eslint-plugin-react-dom": "^1.49.0",
|
||||
"eslint-plugin-react-dom": "^1.52.2",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-react-refresh": "^00.4.20",
|
||||
"eslint-plugin-react-x": "^1.52.3",
|
||||
"eslint-plugin-react-x": "^1.52.2",
|
||||
"globals": "^16.2.0",
|
||||
"typescript": "~5.8.3",
|
||||
"typescript-eslint": "^8.32.1",
|
||||
|
@ -2,11 +2,9 @@ import DeleteIcon from "@mui/icons-material/DeleteOutlined";
|
||||
import DriveFileMoveOutlineIcon from "@mui/icons-material/DriveFileMoveOutline";
|
||||
import LinkOffIcon from "@mui/icons-material/LinkOff";
|
||||
import MoreVertIcon from "@mui/icons-material/MoreVert";
|
||||
import ClearIcon from "@mui/icons-material/Clear";
|
||||
import RefreshIcon from "@mui/icons-material/Refresh";
|
||||
import {
|
||||
IconButton,
|
||||
InputAdornment,
|
||||
ListItemIcon,
|
||||
ListItemText,
|
||||
TextField,
|
||||
@ -394,19 +392,6 @@ function MovementsTable(p: {
|
||||
setFilter(e.target.value);
|
||||
}}
|
||||
style={{ padding: "0px", flex: 1 }}
|
||||
slotProps={{
|
||||
input: {
|
||||
endAdornment: filter.length > 0 && (
|
||||
<InputAdornment position="end">
|
||||
<Tooltip title="Clear current filter">
|
||||
<IconButton size="small" onClick={() => { setFilter(""); }}>
|
||||
<ClearIcon />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
</InputAdornment>
|
||||
),
|
||||
},
|
||||
}}
|
||||
/>
|
||||
<span style={{ flex: 1 }}></span>
|
||||
<Tooltip title="Refresh table">
|
||||
|
Reference in New Issue
Block a user