Skip to content

Commit

Permalink
chore: sync max date of schedule with backend
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei0x309 committed Jul 25, 2024
1 parent f11bb17 commit 19be1df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CI/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ const main = async () => {

if (action === 'update') {
const VERSION = GithubEvent.inputs.version;
const message = `Github ClearWallet new version ${VERSION} has been released!\n
ChromeStore: https://bit.ly/yup-live-android \n
const message = `Github YupLive Android new version ${VERSION} has been released!\n
Google Play: https://bit.ly/yup-live-android \n
Github: https://github.com/andrei0x309/yup-live
`;

Expand Down
4 changes: 2 additions & 2 deletions apps/yup-live-mobile/src/views/CrossPostModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
>
</p>
<p>
<DateIcon />Minimum allowed date:
<DateIcon /> Minimum allowed date:
<b
>{{ new Date(minimumDate).toLocaleDateString() }} -
{{ new Date(minimumDate).toLocaleTimeString() }}</b
Expand Down Expand Up @@ -507,7 +507,7 @@ export default defineComponent({
const maxCharCount = ref(getMaxCharCount(postPlatforms.value));
const modalContent = ref("posting");
const maximumDate = new Date(Date.now() + 1000 * 3570 * 24 * 7);
const maximumDate = new Date(Date.now() + 1000 * 3570 * 24 * 21);
const minimumDate = new Date(Date.now() + 1000 * 60 * 2);
const isSheduling = ref(false);
const dateTime = ref(new Date(Date.now() + 1000 * 60 * 5));
Expand Down
4 changes: 2 additions & 2 deletions apps/yup-live/src/components/content/post/crossPost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
>
</p>
<p>
<DateIcon />Minimum allowed date:
<DateIcon /> Minimum allowed date:
<b
>{{ new Date(minimumDate).toLocaleDateString() }} -
{{ new Date(minimumDate).toLocaleTimeString() }}</b
Expand Down Expand Up @@ -459,7 +459,7 @@ export default defineComponent({
};
const modalContent = ref("posting");
const maximumDate = new Date(Date.now() + 1000 * 3570 * 24 * 7);
const maximumDate = new Date(Date.now() + 1000 * 3570 * 24 * 21);
const minimumDate = new Date(Date.now() + 1000 * 60 * 2);
const isSheduling = ref(false);
const channels = ref([]) as Ref<TChannel[]>;
Expand Down

0 comments on commit 19be1df

Please sign in to comment.