diff --git a/src/views/dashboard/related/log/LogTable/Index.vue b/src/views/dashboard/related/log/LogTable/Index.vue
index 0162ca5f..8b60f33c 100644
--- a/src/views/dashboard/related/log/LogTable/Index.vue
+++ b/src/views/dashboard/related/log/LogTable/Index.vue
@@ -42,14 +42,14 @@ limitations under the License. -->
@closed="showDetail = false"
:title="t('logDetail')"
>
-
+
@@ -62,15 +55,15 @@ limitations under the License. -->
}
.log-item.selected {
- background: rgba(0, 0, 0, 0.04);
+ background: rgb(0 0 0 / 4%);
}
.log-item:not(.level0):hover {
- background: rgba(0, 0, 0, 0.04);
+ background: rgb(0 0 0 / 4%);
}
.log-item:hover {
- background: rgba(0, 0, 0, 0.04) !important;
+ background: rgb(0 0 0 / 4%) !important;
}
.log-item > div {
diff --git a/src/views/dashboard/related/log/LogTable/LogDetail.vue b/src/views/dashboard/related/log/LogTable/LogDetail.vue
index cf6def6f..98d89632 100644
--- a/src/views/dashboard/related/log/LogTable/LogDetail.vue
+++ b/src/views/dashboard/related/log/LogTable/LogDetail.vue
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. -->
-
+
{{ t(item.value) }}:
{{ dateFormat(currentLog[item.label]) }}
@@ -38,11 +38,11 @@ limitations under the License. -->
import { useI18n } from "vue-i18n";
import { dateFormat } from "@/utils/dateFormat";
import { formatJson } from "@/utils/formatJson";
- import { ServiceLogDetail } from "./data";
/*global defineProps */
const props = defineProps({
currentLog: { type: Object as PropType, default: () => ({}) },
+ logTemplate: { type: Object as PropType, default: () => ({}) },
});
const { t } = useI18n();
const logTags = computed(() => {