Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 6bcc6de

Browse files
committed
fix: running status logs empty
1 parent df256ee commit 6bcc6de

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

components.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ declare module 'vue' {
2929
AInputSearch: typeof import('@arco-design/web-vue')['InputSearch'];
3030
ALayout: typeof import('@arco-design/web-vue')['Layout'];
3131
ALayoutContent: typeof import('@arco-design/web-vue')['LayoutContent'];
32+
ALayoutFooter: typeof import('@arco-design/web-vue')['LayoutFooter'];
3233
ALayoutSider: typeof import('@arco-design/web-vue')['LayoutSider'];
3334
ALink: typeof import('@arco-design/web-vue')['Link'];
3435
AList: typeof import('@arco-design/web-vue')['List'];

src/components/clock-timer/index.vue

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,4 @@
8787
});
8888
</script>
8989

90-
<style lang="less" scoped>
91-
.time-box {
92-
display: inline-block;
93-
// width: 65px;
94-
}
95-
</style>
90+
<style lang="less" scoped></style>

src/views/application-management/services/components/basic-info.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
tableLayout: {
3636
type: String,
3737
default: 'auto'
38+
},
39+
align: {
40+
type: String,
41+
default: 'left'
3842
}
3943
},
4044
setup(props, { slots, emit }) {
@@ -72,6 +76,7 @@
7276
column={props.cols}
7377
layout={props.layout}
7478
table-layout={props.tableLayout}
79+
align={props.align}
7580
>
7681
{_.map(props.dataInfo, (item, index) => {
7782
return (

src/views/application-management/services/components/runs/detail-modal/basic-data.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173
data-info={basicDataList.value}
174174
cols={2}
175175
layout={props.layout}
176+
align="right"
176177
v-slots={{
177178
value: ({ data, value }) => {
178179
if (data.key === 'componentChangeSummary') {
@@ -185,6 +186,7 @@
185186
show={showTimer.value}
186187
value={data.value}
187188
stopped={isStopped.value}
189+
class="flex"
188190
></ClockTimer>
189191
);
190192
}

0 commit comments

Comments
 (0)