Skip to content

Commit

Permalink
rebuild homeUI
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Oct 26, 2024
1 parent bd5fa32 commit 7516f95
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HomeUI/dist/css/6860.css → HomeUI/dist/css/8307.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion HomeUI/dist/js/6860.js

This file was deleted.

1 change: 1 addition & 0 deletions HomeUI/dist/js/8307.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion HomeUI/dist/js/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions HomeUI/src/views/apps/marketplace/AppView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -952,10 +952,10 @@ export default {
if (props.appData.version >= 6) {
const auxArray = expireOptions.value;
if (auxArray[expirePosition.value]) {
return Date.now() + auxArray[expirePosition.value].time;
return Date.now() + auxArray[expirePosition.value].time + 60 * 60 * 1000;
}
}
const expTime = Date.now() + 30 * 24 * 60 * 60 * 1000; // 1 month
const expTime = Date.now() + 30 * 24 * 60 * 60 * 1000 + 60 * 60 * 1000; // 1 month
return expTime;
});
const getExpireLabel = computed(() => {
Expand Down

0 comments on commit 7516f95

Please sign in to comment.