Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 4d8fc06

Browse files
committed
Fixed clock
1 parent 7019f2e commit 4d8fc06

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ By the time you read this there might be others. Consult [the documentation](htt
4141

4242
### A note regarding images
4343

44-
Only the featured image will be downloaded. Multiple featured images, images added with ACF and other plugins, are not downloaded. Featured images will be downloaded to the "assets" container by default, into a folder called "{collection_handle}/{entry_slug}", and saved on a field on the entry called "featured_image".
44+
Only the featured image will be downloaded. Multiple featured images, images added with ACF and other plugins, are not downloaded. Featured images will be downloaded to the "assets" container by default (change in config), into a folder called "{collection_handle}/{entry_slug}", and saved on a field on the entry called "featured_image".
4545

4646
You can use the events above to do your own downloading of images and what not. I have done this myself with great success 👍
4747

@@ -108,4 +108,4 @@ You can publish it with the command:
108108

109109
## Known issues
110110

111-
You might get timeout errors if you're importing large datasets and/or many images. In that case you might want to tweak the timeouts on your server or run the import locally.
111+
You might get timeout errors if you're importing large datasets and/or many images. In that case you might want to tweak the timeouts on your server or run the import locally.

dist/js/addon.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/Importer.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export default {
205205
this.seconds = this.checkSingleDigit(0)
206206
207207
this.counter = setInterval(() => {
208-
const date = new Date(0, 0, 0, 0, 0, parseInt(this.seconds) + 1)
208+
const date = new Date(0, 0, 0, parseInt(this.hours), parseInt(this.minutes), parseInt(this.seconds) + 1)
209209
this.hours = date.getHours()
210210
this.minutes = this.checkSingleDigit(date.getMinutes())
211211
this.seconds = this.checkSingleDigit(date.getSeconds())
@@ -221,4 +221,4 @@ export default {
221221
}
222222
}
223223
};
224-
</script>
224+
</script>

0 commit comments

Comments
 (0)