I am having a small issue with my shiny app that seems to have appeared out of nowhere. My slider is now showing the value in a separate box below the slider, but I have not changed any code related to the slider. I am a little confused as my other sliders in my app are constructed in the same manner, but the issue is only effecting this slider.
I have attached a picture below. Unfortunately, I cannot display all of my code, but the slider code was standard (I define the value variable earlier in the code)The slider is part of a conditional panel. It is worth noting that when I change the selection to the other condition, I do not have this issue with my other slider:
`
    conditionalPanel(
      condition = "input.pl == 'A'",
       sliderInput("a", "Price", value = a_start, min = 0, max = 170),
       actionButton("revert_a", "Revert")
                     ),
     conditionalPanel(
       condition = "input.pl == 'B'",
       sliderInput("b", "Price", value = b_start, min = 0, max = 185),
       actionButton("revert_b", "Revert")
                     ),
`
I have been searching for an answer, but have yet to see this anywhere. Any help or advice on what to look for (in the server perhaps) would be greatly appreciated.


