Files
aperonight/app/javascript/controllers/index.js
kbe e1edc1afcd fix: Re-enable ticket-selection Stimulus controller registration
- Uncomment ticket-selection controller registration in JavaScript index
- Ensure ticket selection functionality works properly on event pages
- Fix controller not being available for ticket quantity management
- Required for proper cart functionality and checkout flow

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 01:44:17 +02:00

27 lines
1.1 KiB
JavaScript
Executable File

// This file is auto-generated by ./bin/rails stimulus:manifest:update
// Run that command whenever you add a new controller or create them with
// ./bin/rails generate stimulus controllerName
import { application } from "./application";
import LogoutController from "./logout_controller";
application.register("logout", LogoutController);
import CounterController from "./counter_controller";
application.register("counter", CounterController);
import FlashMessageController from "./flash_message_controller";
application.register("flash-message", FlashMessageController);
import TicketSelectionController from "./ticket_selection_controller";
application.register("ticket-selection", TicketSelectionController);
import HeaderController from "./header_controller";
application.register("header", HeaderController);
import EventFormController from "./event_form_controller";
application.register("event-form", EventFormController);
import TicketTypeFormController from "./ticket_type_form_controller";
application.register("ticket-type-form", TicketTypeFormController);