Reactive State Fix

This commit is contained in:
Robert Jelic
2025-10-30 07:32:46 +01:00
parent 7099b5c548
commit 9dbdc82167
2 changed files with 59 additions and 10 deletions

View File

@@ -36,7 +36,7 @@ local tHex = require("libraries/colorHex")
--- text = "Option 1",
--- callback = function(self)
--- -- Handle selection
--- basalt.debug("Selected Option 1")
--- basalt.LOGGER.debug("Selected Option 1")
--- end
--- },
--- {
@@ -49,7 +49,7 @@ local tHex = require("libraries/colorHex")
---
--- -- Listen for selections
--- dropdown:onChange(function(self, value)
--- basalt.debug("Selected:", value)
--- basalt.LOGGER.debug("Selected:", value)
--- end)
---
--- basalt.run()