I'd like to display the title for TextInput inline with the input box, but by default, it displays on 2 separate lines.
The code below creates a TextInput box in a Jupyter Notebook, but it shows the Title above the box. How can I make the title display on the same line as the input box?
from bokeh.layouts import column, row
from bokeh.models.widgets import Slider, TextInput
from bokeh.plotting import ColumnDataSource, figure, output_file, show, reset_output, output_notebook
reset_output()
output_notebook()
layout = row([TextInput(title='my label:', value='something')])
show(layout)
Current Output:

Desired Output:

