I'm using version 5.2 of Bootstrap. I'm trying to use the fallbackPlacements option of the Tooltips plugin. The problem is that fallbackPlacement takes an array, but doesn't seem to accept one through the data attribute, which the same documentation says should be possible by using the data attribute bs-data-fallback-placement:
<span data-bs-toggle="tooltip" data-bs-placement="auto"
data-bs-fallback-placements="['top','bottom']" title="This is the tooltip text">Hover Over Me</span>
Instead, this causes the tooltip to fail with the following error in the console:
Uncaught TypeError: TOOLTIP: Option "fallbackPlacements" provided type "string" but expected type "array".
Is there a way to pass the array through to the data attribute, or is this a bug with Bootstrap?