@app.callback(
[
Output(“video-display”, “url”),
Output(“PDI”, “children”),
Output(“Max-worker-count”, “children”),
Output(“crowding-violations”, “children”),
Output(“distancing-violations”, “children”),
Output(“mask_violations”, “children”),
Output(“msk_Max-worker-count”, “children”),
Output(“tbs-1”, “children”),
Output(“tbs-2”, “children”)
],
[
Input(“dropdown-footage-selection”, “value”)
Input(“dropdown-footage-selection”, “value”)
]
)
My callback looks like this, in which there are two inputs and 9 outputs. The outputs only change when both inputs changes. Is it possible that if either one of the input changes the output also changes?