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

Commit

Permalink
fix: running status logs empty
Browse files Browse the repository at this point in the history
  • Loading branch information
hibig committed Mar 14, 2024
1 parent df256ee commit 6bcc6de
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ declare module 'vue' {
AInputSearch: typeof import('@arco-design/web-vue')['InputSearch'];
ALayout: typeof import('@arco-design/web-vue')['Layout'];
ALayoutContent: typeof import('@arco-design/web-vue')['LayoutContent'];
ALayoutFooter: typeof import('@arco-design/web-vue')['LayoutFooter'];
ALayoutSider: typeof import('@arco-design/web-vue')['LayoutSider'];
ALink: typeof import('@arco-design/web-vue')['Link'];
AList: typeof import('@arco-design/web-vue')['List'];
Expand Down
7 changes: 1 addition & 6 deletions src/components/clock-timer/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,4 @@
});
</script>

<style lang="less" scoped>
.time-box {
display: inline-block;
// width: 65px;
}
</style>
<style lang="less" scoped></style>
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
tableLayout: {
type: String,
default: 'auto'
},
align: {
type: String,
default: 'left'
}
},
setup(props, { slots, emit }) {
Expand Down Expand Up @@ -72,6 +76,7 @@
column={props.cols}
layout={props.layout}
table-layout={props.tableLayout}
align={props.align}
>
{_.map(props.dataInfo, (item, index) => {
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@
data-info={basicDataList.value}
cols={2}
layout={props.layout}
align="right"
v-slots={{
value: ({ data, value }) => {
if (data.key === 'componentChangeSummary') {
Expand All @@ -185,6 +186,7 @@
show={showTimer.value}
value={data.value}
stopped={isStopped.value}
class="flex"
></ClockTimer>
);
}
Expand Down

0 comments on commit 6bcc6de

Please sign in to comment.