Skip to content

Commit e4b2203

Browse files
authored
fix: update (#393)
1 parent 54c236b commit e4b2203

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/views/dashboard/List.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ limitations under the License. -->
352352
return layout;
353353
});
354354
for (const item of templates) {
355+
delete item.configuration.id;
355356
optimizeTemplate(item.configuration.children);
356357
}
357358
const name = `dashboards.json`;

src/views/dashboard/graphs/Table.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ limitations under the License. -->
4141
</div>
4242
</div>
4343
</div>
44-
<div class="no-data" v-else>No Data</div>
44+
<div class="table-no-data" v-else>No Data</div>
4545
</template>
4646
<script lang="ts" setup>
4747
import { computed } from "vue";
@@ -133,7 +133,7 @@ limitations under the License. -->
133133
}
134134
}
135135
136-
.no-data {
136+
.table-no-data {
137137
font-size: $font-size-smaller;
138138
height: 100%;
139139
align-items: center;

0 commit comments

Comments
 (0)