From e77782ba0ccaf1455efc3029eeb13bb12d01bcbd Mon Sep 17 00:00:00 2001 From: joe-allen-89 <85872286+joe-allen-89@users.noreply.github.com> Date: Wed, 15 May 2024 17:35:48 +0100 Subject: [PATCH] Fix: Add trickle button to data collection (#222) --- js/models.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/models.js b/js/models.js index bcc1c21..a3c068f 100644 --- a/js/models.js +++ b/js/models.js @@ -315,6 +315,8 @@ export function addButtonComponents() { trickleButtonModel.setupModel(); // This line would usually append a trickle button to an article or block buttonModelSite.getChildren().add(trickleButtonModel); + // Add trickle button to data collection + data.add(trickleButtonModel); }); }