Skip to content

Commit

Permalink
fix: 有效期增加空格
Browse files Browse the repository at this point in the history
  • Loading branch information
lhzzforever committed Nov 28, 2023
1 parent c39833f commit 280df65
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions frontend/src/views/my-manage-space/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1089,4 +1089,10 @@
}
}
}
.custom-perm-del-info {
.bk-dialog-footer {
padding: 0 65px 33px !important;
}
}
</style>
2 changes: 1 addition & 1 deletion frontend/src/views/perm-apply/apply-custom-perm/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@
<span v-if="row.expired_at_display">
{{ row.expired_at === 4102444800 ?
`(${row.expired_at_display})`
: `(${$t(`m.common['有效期']`)}${row.expired_at_display})`}}
: `(${$t(`m.common['有效期']`)} ${row.expired_at_display})`}}
</span>
</template>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@
<span v-else>
{{ row.expired_at === 4102444800 ?
`(${row.expired_at_display})`
: `(${$t(`m.common['有效期']`)}${row.expired_at_display})`}}
:
`(${$t(`m.common['有效期']`)} ${row.expired_at_display})`}}
</span>
</span>
</div>
Expand Down

0 comments on commit 280df65

Please sign in to comment.