mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 11:17:08 +00:00
Refresh sequence line data on every render
This commit is contained in:
@@ -422,7 +422,7 @@ export default {
|
||||
preplotSaillinesPointLayer (options = {}) {
|
||||
return new DougalSequenceLayer({
|
||||
id: 'pslp',
|
||||
data: `/api/project/${this.$route.params.project}/line/sail`, // API endpoint returning binary data
|
||||
data: `/api/project/${this.$route.params.project}/line/sail?v=${this.lineTStamp?.valueOf()}`, // API endpoint returning binary data
|
||||
loaders: [DougalBinaryLoader],
|
||||
loadOptions: {
|
||||
fetch: {
|
||||
@@ -441,7 +441,7 @@ export default {
|
||||
preplotPointsLayer (options = {}) {
|
||||
return new DougalSequenceLayer({
|
||||
id: 'pplp',
|
||||
data: `/api/project/${this.$route.params.project}/line/source`, // API endpoint returning binary data
|
||||
data: `/api/project/${this.$route.params.project}/line/source?v=${this.lineTStamp?.valueOf()}`, // API endpoint returning binary data
|
||||
loaders: [DougalBinaryLoader],
|
||||
loadOptions: {
|
||||
fetch: {
|
||||
|
||||
Reference in New Issue
Block a user