bge-ui 1.9.2 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/tabs/index.vue +1 -1
package/dist/index.js
CHANGED
|
@@ -6728,7 +6728,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
6728
6728
|
const $el = tab.ref;
|
|
6729
6729
|
if (!$el)
|
|
6730
6730
|
return false;
|
|
6731
|
-
if ($el.clientWidth === 0
|
|
6731
|
+
if ($el.clientWidth === 0) {
|
|
6732
6732
|
if (updateRetryCount.value < maxRetryCount) {
|
|
6733
6733
|
updateRetryCount.value++;
|
|
6734
6734
|
nextTick(() => {
|
package/package.json
CHANGED
package/src/tabs/index.vue
CHANGED
|
@@ -115,7 +115,7 @@ const getBarStyle = (): { width: string; transform: string } => {
|
|
|
115
115
|
panes.value.forEach((tab: TabPane, index: number) => {
|
|
116
116
|
const $el = tab.ref
|
|
117
117
|
if (!$el) return false
|
|
118
|
-
if ($el.clientWidth === 0
|
|
118
|
+
if ($el.clientWidth === 0) {
|
|
119
119
|
if (updateRetryCount.value < maxRetryCount) {
|
|
120
120
|
updateRetryCount.value++
|
|
121
121
|
nextTick(() => {
|