Compare commits
9 Commits
8d47aa336e
...
feature/ne
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
67f72e05a1 | ||
|
|
7dc0ebf3c1 | ||
|
|
e9a588e479 | ||
|
|
9eaa3de231 | ||
|
|
80f2fa55cd | ||
| 38ffa260b3 | |||
|
|
b90e002f28 | ||
| 0e856b8904 | |||
|
|
62aa6b2215 |
7
.github/workflows/docker-publish.yml
vendored
7
.github/workflows/docker-publish.yml
vendored
@@ -29,3 +29,10 @@ jobs:
|
||||
|
||||
- name: Logout
|
||||
run: docker logout 192.168.31.100:3847
|
||||
|
||||
- name: Trigger Coolify redeploy
|
||||
run: |
|
||||
curl -s -H "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \
|
||||
"http://192.168.31.100:8000/api/v1/deploy?uuid=msoc4skogk44ckc84wokocw0&force=true"
|
||||
|
||||
|
||||
|
||||
@@ -153,7 +153,6 @@ impl ExpenseService {
|
||||
.map(|((year, month), expenses)| {
|
||||
let total_amount: Decimal = expenses
|
||||
.iter()
|
||||
.filter(|e| e.active)
|
||||
.map(|e| e.amount)
|
||||
.sum();
|
||||
MonthlyExpenseGroup {
|
||||
|
||||
@@ -3,7 +3,7 @@ import { useParams, useNavigate } from 'react-router-dom';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { categoryApi, expenseApi, inviteLinkApi } from '../api/client';
|
||||
import { useStore } from '../store/useStore';
|
||||
import type { Category, Expense, InviteLinkResponse, ExpenseHistoryResponse } from '../types';
|
||||
import type { Category, InviteLinkResponse, ExpenseHistoryResponse } from '../types';
|
||||
import {
|
||||
Wallet,
|
||||
TrendingDown,
|
||||
|
||||
Reference in New Issue
Block a user