This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git
The following commit(s) were added to refs/heads/main by this push:
new e4b2203c fix: update (#393)
e4b2203c is described below
commit e4b2203cf6f33b1fd84b79ced30ee7c50e15e6d8
Author: Fine0830 <[email protected]>
AuthorDate: Fri Apr 19 15:54:17 2024 +0800
fix: update (#393)
---
src/views/dashboard/List.vue | 1 +
src/views/dashboard/graphs/Table.vue | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/views/dashboard/List.vue b/src/views/dashboard/List.vue
index 5b690366..c05afc29 100644
--- a/src/views/dashboard/List.vue
+++ b/src/views/dashboard/List.vue
@@ -352,6 +352,7 @@ limitations under the License. -->
return layout;
});
for (const item of templates) {
+ delete item.configuration.id;
optimizeTemplate(item.configuration.children);
}
const name = `dashboards.json`;
diff --git a/src/views/dashboard/graphs/Table.vue
b/src/views/dashboard/graphs/Table.vue
index df563ac5..7818498d 100644
--- a/src/views/dashboard/graphs/Table.vue
+++ b/src/views/dashboard/graphs/Table.vue
@@ -41,7 +41,7 @@ limitations under the License. -->
</div>
</div>
</div>
- <div class="no-data" v-else>No Data</div>
+ <div class="table-no-data" v-else>No Data</div>
</template>
<script lang="ts" setup>
import { computed } from "vue";
@@ -133,7 +133,7 @@ limitations under the License. -->
}
}
- .no-data {
+ .table-no-data {
font-size: $font-size-smaller;
height: 100%;
align-items: center;