bfg-common 1.3.298 → 1.3.299

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.
@@ -44,6 +44,7 @@
44
44
  </a>
45
45
 
46
46
  <foreignObject
47
+ v-if="isNotShowNetworkActions"
47
48
  data-title="network-actions"
48
49
  width="18"
49
50
  height="18"
@@ -225,6 +226,10 @@ const errorText = computed<string>(() =>
225
226
  : ''
226
227
  )
227
228
 
229
+ const isNotShowNetworkActions = computed<boolean>(
230
+ () => !(props.inPortlet && props.network.state.state === 3)
231
+ )
232
+
228
233
  const onSelectNetwork = (networkId: string): void => {
229
234
  emits('select-network', networkId)
230
235
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.298",
4
+ "version": "1.3.299",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",