Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
f353bcd
Bump eslint-plugin-react-hooks from 5.0.0 to 7.0.1
dependabot[bot] Nov 1, 2025
0447439
fix eslint error
dev-rminds Nov 4, 2025
2f9aed2
Merge branch 'develop' into dependabot/npm_and_yarn/develop/eslint-pl…
dev-rminds Nov 4, 2025
9fae295
Merge branch 'develop' into dependabot/npm_and_yarn/develop/eslint-pl…
dev-rminds Nov 10, 2025
865c05f
Add info box to product reservation not control on provider dashboard…
dev-rminds Nov 19, 2025
796522f
fix custom notification error message triggered by wrong route param …
dev-rminds Dec 3, 2025
06955c6
npm audit fix
dev-rminds Dec 4, 2025
a9c2cb9
optimize webshop assets resolution and fix aspect ratio in some cases
dev-rminds Dec 4, 2025
2b06ad1
Merge branch 'develop' into dependabot/npm_and_yarn/develop/eslint-pl…
RobinMeles Dec 8, 2025
c0f14d4
Merge pull request #875 from teamforus/optimize-assets-size
RobinMeles Dec 8, 2025
790c3b2
Merge pull request #874 from teamforus/npm-audit-fix
RobinMeles Dec 8, 2025
93e8b79
Merge branch 'develop' into fixes.custom-notifications-error
RobinMeles Dec 8, 2025
374a6b3
Merge pull request #873 from teamforus/fixes.custom-notifications-error
RobinMeles Dec 8, 2025
65f6719
Merge branch 'develop' into dependabot/npm_and_yarn/develop/eslint-pl…
RobinMeles Dec 8, 2025
c9708bf
Merge pull request #852 from teamforus/dependabot/npm_and_yarn/develo…
RobinMeles Dec 8, 2025
38f8bf8
Merge branch 'develop' into fixes.various
RobinMeles Dec 8, 2025
618c421
Merge pull request #865 from teamforus/fixes.various
RobinMeles Dec 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 88 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"eslint-plugin-no-function-declare-after-return": "^1.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-webpack-plugin": "^5.0.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import ImplementationsRootBreadcrumbs from '../implementations/elements/Implemen
import { DashboardRoutes } from '../../../modules/state_router/RouterBuilder';
import useFilterNext from '../../../modules/filter_next/useFilterNext';
import { createEnumParam, NumberParam, StringParam } from 'use-query-params';
import { useMarkdownService } from '../../../services/MarkdownService';

export default function ImplementationNotificationSend() {
const { id } = useParams();
Expand All @@ -50,6 +51,7 @@ export default function ImplementationNotificationSend() {
const paginatorService = usePaginatorService();
const implementationService = useImplementationService();
const fundService = useFundService();
const markdownService = useMarkdownService();
const implementationNotificationsService = useImplementationNotificationService();

const [fund, setFund] = useState<Fund>(null);
Expand Down Expand Up @@ -87,6 +89,7 @@ export default function ImplementationNotificationSend() {
'<br>',
':webshop_button',
].join('\n'),
markdownService,
),
);

Expand Down Expand Up @@ -279,7 +282,7 @@ export default function ImplementationNotificationSend() {
.then(() => {
navigateState(DashboardRoutes.IMPLEMENTATION_NOTIFICATIONS, {
organizationId: activeOrganization.id,
implementationId: implementation.id,
id: implementation.id,
});

pushSuccess('Gelukt!', 'De e-mail zal zo spoedig mogelijk verstuurd worden naar alle gebruikers.', {
Expand Down Expand Up @@ -366,7 +369,7 @@ export default function ImplementationNotificationSend() {
if (!activeOrganization.allow_custom_fund_notifications) {
navigateState(DashboardRoutes.IMPLEMENTATION_NOTIFICATIONS, {
organizationId: activeOrganization.id,
implementationId: res.data.data.id,
id: res.data.data.id,
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1128,6 +1128,13 @@ export default function ProductsForm({
<FormGroup
label={translate('product_edit.labels.reservation_note')}
error={form.errors.reservation_note}
info={
<Fragment>
Stuur een bericht naar de klant als u de reservering accepteert. In dit
bericht kun je meer informatie kwijt over het aanbod. Bijv. Stuur ons
een e-mail of bel ons om een afspraak in te plannen.
</Fragment>
}
input={(id) => (
<SelectControl
className="form-control"
Expand Down
Loading