fix(premiere-plugin): hide growing-count badge until count > 0
The badge initially showed '0' before any poll completed. Toggling display via JS expects an initial display:none so the badge does not flash in the tab nav on first connect.
This commit is contained in:
parent
a03c85f08a
commit
a03dd36f11
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@
|
|||
<rect x="1" y="5" width="15" height="14" rx="2" ry="2"/>
|
||||
</svg>
|
||||
Growing
|
||||
<span id="growing-count" class="badge">0</span>
|
||||
<span id="growing-count" class="badge" style="display:none;">0</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue