bfg-common 1.2.179 → 1.2.181

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.
@@ -211,6 +211,7 @@
211
211
  <input
212
212
  :id="`${props.testId}-${inputId}-${item[0].id}`"
213
213
  v-model="selectedRowLocal"
214
+ :key="item[0].id"
214
215
  :type="props.type"
215
216
  :class="`${props.type}-btn`"
216
217
  :value="item[0].id"
@@ -6,10 +6,10 @@
6
6
  {{ localization.advancedPerformance }}
7
7
  </h3>
8
8
  </div>
9
- <!-- <div v-show="props.advancedLoading || !props.data" class="empty-data">-->
10
- <!-- {{ localization.emptyAdvancedGraphText }}-->
11
- <!-- </div>-->
12
- <div class="fill-parent flex-column">
9
+ <div v-if="props.isEmpty" class="empty-data">
10
+ {{ localization.emptyAdvancedGraphText }}
11
+ </div>
12
+ <div v-else class="fill-parent flex-column">
13
13
  <div class="vertical-flex-container fill-parent">
14
14
  <common-monitor-advanced-tools
15
15
  v-model:selected-timespan-type="localSelectedTimespanType"
@@ -125,6 +125,7 @@ const props = defineProps<{
125
125
  selectedObjects: string
126
126
  disabledPeriod?: boolean
127
127
  disabledView?: boolean
128
+ isEmpty?: boolean
128
129
  }>()
129
130
 
130
131
  const emits = defineEmits<{
@@ -1,4 +1,4 @@
1
- const lastTimestamp = 1711014731910
1
+ const lastTimestamp = 1711103624305
2
2
 
3
3
  export const useLocalStorage = (
4
4
  name: string,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.2.179",
4
+ "version": "1.2.181",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",