Is there a way to modify the maximum width of a specific Bootstrap Tooltip without affecting the others? I do not utilize Sass or SCSS, and have attempted various methods outlined in the documentation:
tooltip-max-width="300px"
bs-tooltip-max-width="300px"
data-bs-tooltip-max-width="300px"
data-bs-max-width="300px"
The Tooltip is set up in my JavaScript code. I have also tried incorporating a custom parameter in the options, but it has not been successful.
this.buttonTooltip = new bootstrap.Tooltip(this.buttonImageEl, { html: true, maxWidth: "300px" });
Does anyone have a solution for this issue?